(No version information available, might only be in Git)
TableDelete::bind — Bind delete query parameters
$placeholder_values
)Binds a value to a specific placeholder.
placeholder_values
The name of the placeholder and the value to bind.
A TableDelete object.
Example #1 mysql_xdevapi\TableDelete::bind() example
<?php
$table->delete()->where("name = :name")->orderby("id DESC")->limit(2)->bind(['name' => 'Cassidy'])->execute();
?>