LuaSandbox::callFunction
(PECL luasandbox >= 1.0.0)
LuaSandbox::callFunction — Call a function in a Lua global variable
说明
Calls a function in a Lua global variable.
If the name contains "." characters, the function is located via recursive table accesses, as if the name were a Lua expression.
If the variable does not exist, or is not a function, false will be returned and a warning issued.
For more information about calling Lua functions and the return values, see LuaSandboxFunction::call().
参数
name
-
Lua variable name.
args
-
Arguments to the function.
示例
示例 #1 Calling a Lua function
<?php
// create a new LuaSandbox
$sandbox = new LuaSandbox();
// Call Lua's string.match
$captures = $sandbox->callFunction( 'string.match', $string, $pattern );
?>
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/luasandbox.callfunction.php