CakeFest 2024: The Official CakePHP Conference

Lua::eval

(PECL lua >=0.9.0)

Lua::evalEvaluate a string as Lua code

Descrizione

public Lua::eval(string $statements): mixed

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
add a note

User Contributed Notes

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