getSchemaNames() public method

Returns all schema names in the database, except system schemas.
Since: 2.0.4
public getSchemaNames ( boolean $refresh = false ) : string[]
$refresh boolean whether to fetch the latest available schema names. If this is false, schema names fetched previously (if available) will be returned.
return string[] all schema names in the database, except system schemas.
示例#1
0
文件: Schema.php 项目: janatzend/app
 public function getSchemaNames($refresh = false)
 {
     return parent::getSchemaNames($refresh);
 }