CollectionFind::limit

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

CollectionFind::limit返されるドキュメントの数を限定する

説明

public mysql_xdevapi\CollectionFind::limit(int $rows): mysql_xdevapi\CollectionFind

返されるドキュメントの最大数を設定します。

パラメータ

rows

ドキュメントの最大数

戻り値

追加の操作に使える CollectionFind オブジェクトを返します。 DocResult オブジェクトを返す execute() メソッドとチェインできます。

例1 mysql_xdevapi\CollectionFind::limit() の例

<?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();
$create
->add('{"name": "Reginald", "age": 42, "job": "Butler"}')
->
execute();


// ...

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

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

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

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

array(1) {
  [0]=>
  array(4) {
    ["_id"]=>
    string(28) "00005b6b536100000000000000f3"
    ["age"]=>
    int(42)
    ["job"]=>
    string(6) "Butler"
    ["name"]=>
    string(8) "Reginald"
  }
}
add a note add a note

User Contributed Notes

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