PHP 8.5.0 Beta 3 available for testing

CrudOperationBindable::bind

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

CrudOperationBindable::bind โ€” Bind 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();

?>
๏ผ‹ๆทปๅŠ ๅค‡ๆณจ

็”จๆˆท่ดก็Œฎ็š„ๅค‡ๆณจ

ๆญค้กต้ขๅฐšๆ— ็”จๆˆท่ดก็Œฎ็š„ๅค‡ๆณจใ€‚
To Top