(PECL lua >=0.9.0)
LuaClosure::__invoke — luaclosure を起動
args
例1 LuaClosure::__invoke()の例
<?php
$lua = new Lua();
$closure = $lua->eval(<<<CODE
return (function ()
print("hello world")
end)
CODE
);
$lua->call($closure);
$closure();
?>
上の例の出力は以下となります。
hello worldhello world