(没有版本信息可用,可能只存在于 Git 中)
CollectionFind::fields — 设置文档字段过滤器
定义查询要返回的列。如果未定义,则使用所有列。
projection
可以是单个字符串或字符串数组,用于标识要为每个匹配搜索条件的文档返回的列。
一个 CollectionFind 对象,可用于进一步处理。
示例 #1 mysql_xdevapi\CollectionFind::fields() 示例
<?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])
->fields('name')
->execute();
var_dump($result->fetchAll());
?>
上面的示例将输出类似以下内容
array(1) { [0]=> array(1) { ["name"]=> string(6) "Alfred" } }