|
Schema::getTablesGet schema tables Description
public array mysql_xdevapi\Schema::getTables()
Warning
This function is currently not documented; only its argument list is available. ParametersThis function has no parameters. Return ValuesArray of all tables in this schema, where each array element value is a Table object with the table name as the key. ExamplesExample #1 mysql_xdevapi\Schema::getTables example The above example will output something similar to:
array(2) {
["cities"]=>
object(mysql_xdevapi\Table)#3 (1) {
["name"]=>
string(6) "cities"
}
["names"]=>
object(mysql_xdevapi\Table)#4 (1) {
["name"]=>
string(5) "names"
}
}
|