LuaClosure
PHP Manual

LuaClosure::__invoke

(PECL lua >=0.9.0)

LuaClosure::__invokeinvoke luaclosure

Açıklama

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

Uyarı

Bu işlev hala belgelendirilmemiştir; sadece değiştirge listesi mevcuttur.

Değiştirgeler

arg

...

Dönen Değerler

Örnekler

Örnek 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();
?>

Yukarıdaki örneğin çıktısı:

hello worldhello world

LuaClosure
PHP Manual