Collection::count

(无版本信息可用,可能只在 Git 中)

Collection::count获取文档计数

描述

public mysql_xdevapi\Collection::count(): int

此功能类似于针对当前模式和集合的 MySQL 服务器执行的 SELECT COUNT(*) SQL 操作。换句话说,它计算集合中的文档数量。

参数

此函数没有参数。

返回值

集合中的文档数量。

示例

示例 #1 mysql_xdevapi\Collection::count() 示例

<?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");

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

$result = $collection
->add(
'{"name": "Bernie",
"jobs": [
{"title":"Cat Herder","Salary":42000},
{"title":"Father","Salary":0}
],
"hobbies": ["Sports","Making cupcakes"]}'
,
'{"name": "Jane",
"jobs": [
{"title":"Scientist","Salary":18000},
{"title":"Mother","Salary":0}
],
"hobbies": ["Walking","Making pies"]}'
)
->
execute();

var_dump($collection->count());
?>

上面的例子将输出

int(2)
添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top