LuaClosure::__invoke

(PECL lua >=0.9.0)

LuaClosure::__invokeinvoke luaclosure

설명

public void LuaClosure::__invoke ( mixed $arg [, mixed $... ] )

Warning

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

인수

arg

...

반환값

예제

Example #1 LuaClosure::__invoke()example

<?php
$lua 
= new Lua();
$closure $lua->eval(<<<CODE
    return (function ()
        print("hello world")
    end)
CODE
);

$lua->call($closure);
/* after PHP 5.3 */
$closure();
?>

위 예제의 출력:

hello worldhello world
add a note add a note

User Contributed Notes

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