Longhorn PHP 2025 - Speakers and Schedule Announced!

Voting

: six minus six?
(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