2024 年日本 PHP 研討會

CollectionFind::execute

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

CollectionFind::execute執行敘述

說明

public mysql_xdevapi\CollectionFind::execute(): mysql_xdevapi\DocResult

執行查詢操作;此功能允許方法鏈結。

參數

此函數沒有參數。

回傳值

一個 mysql_xdevapi\DocResult 物件,可用於擷取結果或查詢操作狀態。

範例

範例 #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");

$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