Lua::eval
(PECL lua >=0.9.0)
Lua::eval — Evaluate a string as Lua code
Descrizione
Avviso
Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.
Elenco dei parametri
-
statements -
Valori restituiti
Returns result of evaled code, NULL for wrong arguments or FALSE on
other failure.
Esempi
Example #1 Lua::eval()example
<?php
$lua = new Lua();
$lua->eval(<<<CODE
print(2);
CODE
);
?>
Il precedente esempio visualizzerà:
2
There are no user contributed notes for this page.
