略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: CrudOperationBindable::bind

2025-03-12

CrudOperationBindable::bind

(No version information available, might only be in Git)

CrudOperationBindable::bindBind value to placeholder

说明

abstract public mysql_xdevapi\CrudOperationBindable::bind(array $placeholder_values): mysql_xdevapi\CrudOperationBindable

Binds a value to a specific placeholder.

警告

本函数还未编写文档,仅有参数列表。

参数

placeholder_values

The name of the placeholders and the values to bind.

返回值

A CrudOperationBindable object.

示例

示例 #1 mysql_xdevapi\CrudOperationBindable::bind() example

<?php

$res
= $coll->modify('name like :name')->arrayInsert('job[0]', 'Calciatore')->bind(['name' => 'ENTITY'])->execute();
$res = $table->delete()->orderby('age desc')->where('age < 20 and age > 12 and name != :name')->bind(['name' => 'Tierney'])->limit(2)->execute();

?>
添加备注

用户贡献的备注

此页面尚无用户贡献的备注。

官方地址:https://www.php.net/manual/en/mysql-xdevapi-crudoperationbindable.bind.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3