PHP 8.1.28 Released!

LuaClosure::__invoke

(PECL lua >=0.9.0)

LuaClosure::__invoke调用 luaclosure

说明

public LuaClosure::__invoke(mixed ...$args): void

警告

本函数还未编写文档,仅有参数列表。

参数

args

返回值

示例

示例 #1 LuaClosure::__invoke()示例

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

$lua->call($closure);
$closure();
?>

以上示例会输出:

hello worldhello world
add a note

User Contributed Notes

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