(无版本信息可用,可能只在 Git 中)
CollectionAdd::__construct — CollectionAdd 构造函数
用于将文档添加到集合中;从 Collection 对象调用。
此函数没有参数。
示例 #1 mysql_xdevapi\CollectionAdd::__construct() 示例
<?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");
// 添加两个文档
$collection
->add('{"name": "Fred", "age": 21, "job": "Construction"}')
->execute();
$collection
->add('{"name": "Wilma", "age": 23, "job": "Teacher"}')
->execute();
// 使用单个 JSON 对象添加两个文档
$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();
// 从上次 add() 中获取生成的 ID 列表
$ids = $result->getGeneratedIds();
print_r($ids);
?>
以上示例将输出类似于以下内容
Array ( [0] => 00005b6b53610000000000000056 [1] => 00005b6b53610000000000000057 )
注意:
MySQL Server 8.0 或更高版本会生成唯一的 _id,如示例中所示。如果使用 MySQL Server 5.7,则必须手动定义 _id 字段。