(无版本信息可用,可能仅在 Git 中)
CollectionModify::bind — 将值绑定到查询占位符
将参数绑定到修改操作搜索条件中的占位符。
占位符的形式为 :NAME,其中 ':' 是一个常见的前缀,必须始终存在于任何 NAME 之前,其中 NAME 是占位符的名称。如果必须在修改操作的搜索条件中替换多个实体,则 bind 方法接受占位符列表。
placeholder_values
要替换到搜索条件中的占位符值。允许多个值,并且必须作为映射 PLACEHOLDER_NAME->PLACEHOLDER_VALUE 的数组传递。
一个 CollectionModify 对象,可用于执行命令或添加其他操作。
示例 #1 mysql_xdevapi\CollectionModify::bind() 示例
<?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");
$collection = $schema->createCollection("people");
$result = $collection
->add(
'{"name": "Bernie",
"traits": ["Friend", "Brother", "Human"]}')
->execute();
$collection
->modify("name = :name")
->bind(['name' => 'Bernie'])
->arrayAppend('traits', 'Happy')
->execute();
$result = $collection
->find()
->execute();
print_r($result->fetchAll());
?>
以上示例将输出类似以下内容
Array ( [0] => Array ( [_id] => 00005b6b53610000000000000110 [name] => Bernie [traits] => Array ( [0] => Friend [1] => Brother [2] => Human [3] => Happy ) ) )