PMA\libraries\plugins\export\TableProperty::getIndexName PHP Метод

getIndexName() публичный Метод

Gets the index name
public getIndexName ( ) : string
Результат string containing the name of the index
    public function getIndexName()
    {
        if (strlen($this->key) > 0) {
            return "index=\"" . htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8') . "\"";
        }
        return "";
    }