Lua::call

Lua::__call

(PECL lua >=0.9.0)

Lua::call -- Lua::__call调用 Lua 函数

描述

public Lua::call(callable $lua_func, array $args = ?, int $use_self = 0): mixed
public Lua::__call(callable $lua_func, array $args = ?, int $use_self = 0): mixed

警告

此函数目前没有文档; 只有其参数列表可用。

参数

lua_func

Lua 中的函数名称

args

传递给 Lua 函数的参数

use_self

是否使用 self

返回值

返回被调用函数的结果,对于错误的参数返回 **null** ,对于其他错误返回 **false**。

示例

示例 #1 Lua::call()示例

<?php
$lua
= new Lua();
$lua->eval(<<<CODE
function dummy(foo, bar)
print(foo, ",", bar)
end
CODE
);
$lua->call("dummy", array("Lua", "geiliable\n"));
$lua->dummy("Lua", "geiliable"); // __call()
var_dump($lua->call(array("table", "concat"), array(array(1=>1, 2=>2, 3=>3), "-")));
?>

上面的示例将输出

Lua,geiliable
Lua,geiliable
string(5) "1-2-3"

参见

添加说明

用户贡献说明

此页面没有用户贡献的说明。
To Top