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

getTables() public méthode

returns array with table names for given db
public getTables ( string $database, mixed $link = null ) : array
$database string name of database
$link mixed mysql link resource|object
Résultat array tables names
    public function getTables($database, $link = null)
    {
        return $this->fetchResult('SHOW TABLES FROM ' . Util::backquote($database) . ';', null, 0, $link, self::QUERY_STORE);
    }