Lua::assign

(PECL lua >=0.9.0)

Lua::assign將一個php變量賦值給Lua

說明

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

警告

本函數(shù)還未編寫文檔,僅有參數(shù)列表。

參數(shù)

name

value

返回值

賦值成功返回$this否則返回null

范例

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

<?php
$lua 
= new Lua();
$lua->assign("php_var", array(1=>123)); //lua table index begin with 1
$lua->eval(<<<CODE
    print(php_var);
CODE
);
?>

以上例程會輸出:

Array
 (
     [1] => 1
     [2] => 2
     [3] => 3
 )