cubrid_list_dbs

(PECL CUBRID >= 8.3.0)

cubrid_list_dbsReturn an array with the list of all existing CUBRID databases

说锟斤拷

cubrid_list_dbs ([ resource $conn_identifier ] ) : array

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.

锟斤拷锟斤拷

Example #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"
}