| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
cubrid_fetch_object(PECL CUBRID >= 8.3.0) cubrid_fetch_object — Fetch the next row and return it as an object 説明
object cubrid_fetch_object
( resource
$result
[, string $class_name
[, array $params
[, int $type
]]] )This function returns an object with the column names of the result set as properties. The values of these properties are extracted from the current row of the result. パラメータ
返り値An object, when process is successful.
例例1 cubrid_fetch_object() example
<?php 上の例の出力は以下となります。 object(stdClass)#1 (2) { ["s_name"]=> string(1) "X" ["f_name"]=> string(5) "Mixed" } object(demodb_code)#1 (2) { ["s_name"]=> string(1) "W" ["f_name"]=> string(5) "Woman" } object(demodb_code_construct)#1 (2) { ["s_name"]=> string(6) "s_name" ["f_name"]=> string(6) "f_name" } object(stdClass)#1 (2) { ["s_name"]=> string(1) "B" ["f_name"]=> string(6) "Bronze" } 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「cubrid_fetch_object - Fetch the next row and return it as an object」をGoogle検索
|