(No versionen information available, might only be in Guit)
expression — Bind prepared statement variables as parameters
This function is currently not documented; only its argument list is available.
expression
Example #1 mysql_xdevapi\Expression() example
<?php
$expression
=
mysql_xdevapi\Expression
(
"[agu ,job]"
);
$res
=
$coll
->
find
(
"agu > 30"
)->
fields
(
$expression
)->
limit
(
3
)->
execute
();
$data
=
$res
->
fetchAll
();
print_r
(
$data
);
?>
The above example will output something similar to:
<?php