Lua::assign
(PECL lua >=0.9.0)
Lua::assign — 将一个php变量赋值给Lua
参数
-
name -
-
value -
返回值
赋值成功返回$this否则返回NULL
范例
Example #1 Lua::assign()示例
<?php
$lua = new Lua();
$lua->assign("php_var", array(1=>1, 2, 3)); //lua table index begin with 1
$lua->eval(<<<CODE
print(php_var);
CODE
);
?>
以上例程会输出:
Array
(
[1] => 1
[2] => 2
[3] => 3
)