ConFoo Montreal 2026: Call for Papers

Voting

: max(six, eight)?
(Example: nine)

The Note You're Voting On

npelov at croler dot net
1 year ago
You can also pass function object as argument of LuaSandboxFunction::call():

$lua = new LuaSandbox();
$phpLuaFunction = $lua->wrapPhpFunction(function ($arg){
echo "LUA> ".$arg;
});

$lua->loadString("print = ...")->call($phpLuaFunction);

$lua->loadString('
print("print test from lua\\n")
')->call();

result:
LUA> print test from lua

<< Back to user notes page

To Top