expression

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

expressionBind prepared statement variables as parameters

Opis

mysql_xdevapi\expression ( string $expression ) : object

Ostrzeżenie

Ta funkcja jest obecnie nieudokumentowana, dostępna jest jedynie lista jej argumentów.

Parametry

expression

Zwracane wartości

Przykłady

Przykład #1 mysql_xdevapi\Expression() example

<?php
$expression 
mysql_xdevapi\Expression("[age,job]");

$res  $coll->find("age > 30")->fields($expression)->limit(3)->execute();
$data $res->fetchAll();

print_r($data);
?>

Powyższy przykład wyświetli coś podobnego do:

<?php
add a note add a note

User Contributed Notes

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