PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

cubrid_db_name - Get db name from results of cubrid_list_dbs | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

cubrid_db_name

(PECL CUBRID >= 8.3.1)

cubrid_db_nameGet db name from results of cubrid_list_dbs

説明

string cubrid_db_name ( array $result , int $index )

Retrieve the database name from a call to cubrid_list_dbs().

パラメータ

result

The result pointer from a call to cubrid_list_dbs().

index

The index into the result set.

返り値

Returns the database name on success, and FALSE on failure. If FALSE is returned, use cubrid_error() to determine the nature of the error.

例1 cubrid_db_name() example

<?php
error_reporting
(E_ALL);

$conn cubrid_connect('localhost'33000'demodb''dba''');
$db_list cubrid_list_dbs($conn);

$i 0;
$cnt count($db_list);
while (
$i $cnt) {
    echo 
cubrid_db_name($db_list$i) . "\n";
    
$i++;
}
?>

上の例の出力は以下となります。

demodb

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「cubrid_db_name - Get db name from results of cubrid_list_dbs」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | cubrid_db_name - Get db name from results of cubrid_list_dbs」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: