PHP Conference Japan 2024

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