(PECL CUBRID >= 8.3.0)
cubrid_list_dbs — Return an array with the list of all existing CUBRID databases
This function returns an array with the list of all existing Cubrid databases.
conn_identifier
The CUBRID connection.
An numeric array with all existing Cubrid databases; on success.
false
on failure.
Приклад #1 cubrid_list_dbs() example
<?php
$conn = cubrid_connect("localhost", 33000, "demodb");
$db_list = cubrid_list_dbs($conn);
var_dump($db_list);
cubrid_disconnect($conn);
?>
Поданий вище приклад виведе:
array(1) { [0]=> string(6) "demodb" }