(无版本信息可用,可能仅在 Git 中)
TableUpdate::bind — 绑定更新查询参数
将值绑定到特定占位符。
placeholder_values
占位符的名称以及要绑定的值,定义为 JSON 数组。
TableUpdate 对象。
示例 #1 mysql_xdevapi\TableUpdate::bind() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
$table->update()
->set('status', 'admin')
->where('name = :name and age > :age')
->bind(['name' => 'Bernie', 'age' => 2000])
->execute();
?>