yii\db\Schema::getRawTableName PHP Method

getRawTableName() public method

This method will strip off curly brackets from the given table name and replace the percentage character '%' with [[Connection::tablePrefix]].
public getRawTableName ( string $name ) : string
$name string the table name to be converted
return string the real name of the given table name
    public function getRawTableName($name)
    {
        if (strpos($name, '{{') !== false) {
            $name = preg_replace('/\\{\\{(.*?)\\}\\}/', '\\1', $name);
            return str_replace('%', $this->db->tablePrefix, $name);
        } else {
            return $name;
        }
    }