LuaClosure::__invoke
(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
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。