(PECL lua >=0.9.0)
LuaClosure::__invoke — invoke luaclosure
이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.
arg
...
Example #1 LuaClosure::__invoke()example
<?php
$lua = new Lua();
$closure = $lua->eval(<<<CODE
return (function ()
print("hello world")
end)
CODE
);
$lua->call($closure);
/* after PHP 5.3 */
$closure();
?>
위 예제의 출력:
hello worldhello world