略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: LuaClosure::__invoke

2024-05-02

LuaClosure::__invoke

(PECL lua >=0.9.0)

LuaClosure::__invoke调用luaclosure

说明

public LuaClosure::__invoke(mixed $arg, mixed $... = ?): void

警告

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

参数

arg

...

返回值

范例

示例 #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
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/luaclosure.invoke.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3