expression

(No version information available, might only be in Git)

expressionプリペアドステートメントの変数をパラメータとしてバインドする

説明

mysql_xdevapi\expression(string $expression): object

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

expression

戻り値

例1 mysql_xdevapi\Expression() の例

<?php
$expression
= mysql_xdevapi\Expression("[age,job]");

$res = $coll->find("age > 30")->fields($expression)->limit(3)->execute();
$data = $res->fetchAll();

print_r($data);
?>

上の例の出力は、 たとえば以下のようになります。

<?php
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top