php8.5
Home/ Manual/ mysql_xdevapi / crudoperationbindable/ CrudOperationBindable::bind

CrudOperationBindable::bind

PHP function Edit on GitHub ✎

Bind value to placeholder

Description

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

Binds a value to a specific placeholder.

Func

Parameters

placeholder_values

The name of the placeholders and the values to bind.

Return Values

A CrudOperationBindable object.

Examples

mysql_xdevapi\CrudOperationBindable::bind() example

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

?>

Source: reference/mysql_xdevapi/mysql_xdevapi/crudoperationbindable/bind.xml · from the official PHP manual (php/doc-en)