関数・クラス解説

cubrid_fetch_object

version:PECL CUBRID >= 8.3.0 (公式)

Fetch the next row and return it as an object

公式リファレンス

書式

cubrid_fetch_object ( resource $result [, string $class_name [, array $params [, int $type ]]] ) : object

説明

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.

パラメータ

result
result comes from a call to cubrid_execute()
class_name
The name of the class to instantiate. If not specified, a stdClass (stdClass is PHP's generic empty class that's used when casting other types to objects) object is returned.
params
An optional array of parameters to pass to the constructor for class_name objects.
type
Type can only be CUBRID_LOB, this parameter will be used only when you need to operate the lob object.

返値

An object, when process is successful. FALSE, when there are no more rows; NULL, when process is unsuccessful.

サンプル

例1 cubrid_fetch_object() example

$conn = cubrid_connect("localhost", 33000, "demodb"); $res = cubrid_execute($conn, "SELECT * FROM code"); var_dump(cubrid_fetch_object($res)); // if you want to operate LOB object, you can use cubrid_fetch_object($res, CUBRID_LOB) class demodb_code {     public $s_name = null;     public $f_name = null;     public function toString() {         var_dump($this);     } } var_dump(cubrid_fetch_object($res, "demodb_code")); // if you want to operate LOB object, you can use cubrid_fetch_object($res, "demodb_code", CUBRID_LOB) class demodb_code_construct extends demodb_code {     public function __construct($s, $f) {         $this->s_name = $s;          $this->f_name = $f;      }    } var_dump(cubrid_fetch_object($res, 'demodb_code_construct', array('s_name', 'f_name'))); // if you want to operate LOB object, you can use cubrid_fetch_object($res, 'demodb_code_construct', array('s_name', 'f_name'), CUBRID_LOB) var_dump(cubrid_fetch_object($res)); cubrid_close_request($res); cubrid_disconnect($conn);

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

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

参考

  • cubrid_execute() - Execute a prepared SQL statement
  • cubrid_fetch() - Fetch the next row from a result set
  • cubrid_fetch_array() - Fetch a result row as an associative array, a numeric array, or both
  • cubrid_fetch_assoc() - Return the associative array that corresponds to the fetched row
  • cubrid_fetch_row() - Return a numerical array with the values of the current row
  • ワード検索


    ※入力キーワードが、関数名・説明文・タグに含まれるものを検索

    関数名アルファベット別

    A B C D E F G H I J
    K L M N O P Q R S T
    U V W X Y Z _

    最終更新一覧

    stristr
     大文字小文字を区別せず文字列を検索し、ヒット箇所以降(あるいは以前)の文字列を返却

    stripslashes
     バックスラッシュでエスケープされた文字列から、バックスラッシュを取り除く

    stripos
     大文字小文字を区別せずに文字列が最初に現れる位置を取得する

    stripcslashes
     addcslashes() でクォートされた文字列をアンクォートする

    strip_tags
     文字列から HTML と PHP のタグを除去して返却

    strcspn
     指定した文字が最初に現れる位置を調べる

    strcoll
     ロケールに基づいて2つの文字列を比較し同じか(あるいは大小)を判定する

    strcmp
     2つの文字列を比較し同じか(あるいは大小)を判定する

    strchr
     strstr() のエイリアス

    strcasecmp
     2つの文字列を比較(大文字小文字を区別せず同じとみなす)

    カテゴリー一覧

    PHP の振る舞いの変更
    音声フォーマットの操作
    認証サービス
    コマンドライン関連
    圧縮およびアーカイブ
    暗号
    データベース関連
    日付および時刻関連
    ファイルシステム
    自然言語および文字エンコーディング
    画像処理および作成
    メール関連
    数学
    テキスト以外の MIME 型
    プロセス制御
    その他の基本モジュール
    その他のサービス
    検索エンジン用の拡張モジュール
    サーバー固有のモジュール
    セッション関連
    テキスト処理
    変数・データ型関連
    ウェブサービス
    Windows 用のモジュール
    XML 操作
    GUI用の拡張モジュール