LuaSandbox 类

(PECL luasandbox >= 1.0.0)

简介

LuaSandbox 类创建一个 Lua 环境,并允许执行 Lua 代码。

类概要

class LuaSandbox {
/* 常量 */
const int SAMPLES = 0;
const int SECONDS = 1;
const int PERCENT = 2;
/* 方法 */
public callFunction(string $name, mixed ...$args): array|bool
public enableProfiler(float $period = 0.02): bool
public getCPUUsage(): float
public getProfilerFunctionReport(int $units = LuaSandbox::SECONDS): array
public static getVersionInfo(): array
public loadBinary(string $code, string $chunkName = ''): LuaSandboxFunction
public loadString(string $code, string $chunkName = ''): LuaSandboxFunction
public registerLibrary(string $libname, array $functions): void
public setCPULimit(float|bool $limit): void
public setMemoryLimit(int $limit): void
}

预定义常量

LuaSandbox::SAMPLES

LuaSandbox::getProfilerFunctionReport() 一起使用,以样本形式返回时间。

LuaSandbox::SECONDS

LuaSandbox::getProfilerFunctionReport() 一起使用,以秒为单位返回时间。

LuaSandbox::PERCENT

LuaSandbox::getProfilerFunctionReport() 一起使用,以总时间的百分比返回时间。

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top