Statement on glibc/iconv Vulnerability

CrudOperationBindable::bind

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

CrudOperationBindable::bindプレースホルダーに値をバインドする

説明

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

特定のプレースホルダーに値をバインドします。

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

placeholder_values

プレースホルダーの名前と、バインドする値

戻り値

CrudOperationBindable オブジェクトを返します。

例1 mysql_xdevapi\CrudOperationBindable::bind() の例

<?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();

?>
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top