PMA\libraries\DatabaseInterface::getTables PHP 메소드

getTables() 공개 메소드

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
리턴 array tables names
    public function getTables($database, $link = null)
    {
        return $this->fetchResult('SHOW TABLES FROM ' . Util::backquote($database) . ';', null, 0, $link, self::QUERY_STORE);
    }