update : 2015.11.03
php.shukuma.com

검색:
 
 
Evaluate a string as Lua code

Lua::eval

(PECL lua >=0.9.0)

Lua::evalEvaluate a string as Lua code

설명

public mixed Lua::eval ( string $statements )

Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

인수

statements

반환값

Returns result of evaled code, NULL for wrong arguments or FALSE on other failure.

예제

Example #1 Lua::eval()example

<?php
$lua 
= new Lua();
$lua->eval(<<<CODE
    print(2);
CODE
);
?>

위 예제의 출력:

2