Lua::assign

(PECL lua >=0.9.0)

Lua::assign将一个php变量赋值给Lua

说明

public Lua::assign(string $name, string $value): mixed

警告

本函数还未编写文档,仅有参数列表。

参数

name

value

返回值

赋值成功返回$this否则返回null

示例

示例 #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
 )
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top