|
Schema::getTableGet schema table Description
public mysql_xdevapi\Table mysql_xdevapi\Schema::getTable(string
$name)Fetch a Table object for the provided table in the schema. Parameters
Return ValuesA Table object. ExamplesExample #1 mysql_xdevapi\Schema::getTable example The above example will output something similar to:
Array
(
[0] => Array
(
[name] => John
[age] => 42
)
[1] => Array
(
[name] => Sam
[age] => 33
)
)
|