(没有版本信息可用,可能仅存在于 Git 中)
CollectionModify::bind — 将值绑定到查询占位符
$placeholder_values
): mysql_xdevapi\CollectionModify将参数绑定到修改操作搜索条件中的占位符。
占位符的形式为 :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 ) ) )