LuaClosure::__invoke

(PECL lua >=0.9.0)

LuaClosure::__invoke����luaclosure

˵��

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

Warning

��������δ��д�ĵ������в����б�

����

arg

...

����ֵ

����

Example #1 LuaClosure::__invoke()ʾ��

<?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