©
本文档使用 PHP中文网手册 发布
(PECL lua >=0.9.0)
Lua::assign — 将一个php变量赋值给Lua
$name
, string $value
)
本函数还未编写文档,仅有参数列表。
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 )