2024 年日本 PHP 研討會

CollectionFind::__construct

(沒有版本資訊,可能只在 Git 中)

CollectionFind::__constructCollectionFind 建構函式

說明

private mysql_xdevapi\CollectionFind::__construct()

警告

此函式目前沒有說明文件;只有它的參數列表可用。

參數

此函式沒有參數。

範例

範例 #1 CollectionFind 範例

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();

$schema = $session->getSchema("addressbook");
$create = $schema->createCollection("people");
$result = $create
->add('{"name": "Alfred", "age": 18, "job": "Butler"}')
->
execute();

// ...

$collection = $schema->getCollection("people");

$result = $collection
->find('job like :job and age > :age')
->
bind(['job' => 'Butler', 'age' => 16])
->
execute();

var_dump($result->fetchAll());
?>

以上範例的輸出結果類似如下:

array(1) {
  [0]=>
  array(4) {
    ["_id"]=>
    string(28) "00005b6b536100000000000000cf"
    ["age"]=>
    int(18)
    ["job"]=>
    string(6) "Butler"
    ["name"]=>
    string(6) "Alfred"
  }
}
新增註釋

使用者貢獻的註釋

此頁面沒有使用者貢獻的註釋。
To Top