PMA\libraries\DatabaseInterface::getSystemSchemas PHP Méthode

getSystemSchemas() public méthode

Get the list of system schemas
public getSystemSchemas ( ) : array
Résultat array list of system schemas
    public function getSystemSchemas()
    {
        $schemas = array('information_schema', 'performance_schema', 'mysql', 'sys');
        $systemSchemas = array();
        foreach ($schemas as $schema) {
            if ($this->isSystemSchema($schema, true)) {
                $systemSchemas[] = $schema;
            }
        }
        return $systemSchemas;
    }