検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 41 for luasandbox (0.004 sec.)
Enable the profiler. 9076
« LuaSandbox::disableProfiler LuaSandbox::getCPUUsage » PHP Manual LuaSandbox Enable the profile ... r. LuaSandbox::enableProfiler (PECL luasandbox >= 1.1.0) LuaSand ... :enableProfiler — Enable the profiler. 説明 public LuaSandbox::enableProfiler ( float $period = 0.02 ): bool Ena ... n indicating whether the profiler is enabled. 参考 LuaSandbox::disableProfiler() - Disable the profiler LuaSandb ... ) - Fetch profiler data 関連キーワード: profiler , LuaSandbox , the , period , enableProfiler , disableProfiler ...
https://man.plustar.jp/php/luasandbox.enableprofiler.html - [similar]
Fetch the current CPU time usage of the Lua environment 9076
« LuaSandbox::enableProfiler LuaSandbox::getMemoryUsage » PHP Manual LuaSandbox Fetch the curren ... t CPU time usage of the Lua environment LuaSandbox::getCPUUsage (PECL luasandbox >= 1.0.0) LuaSandbox ... CPU time usage of the Lua environment 説明 public LuaSandbox::getCPUUsage (): float Fetches the current CPU tim ... rn the elapsed wall-clock time, not CPU time. 参考 LuaSandbox::getMemoryUsage() - Fetch the current memory usage ... of the Lua environment LuaSandbox::getPeakMemoryUsage() - Fetch the peak memory usag ...
https://man.plustar.jp/php/luasandbox.getcpuusage.html - [similar]
はじめに 9045
« LuaSandbox インストール/設定 » PHP Manual LuaSandbox はじめに はじめに LuaSandbox is an extens ... in PHP. Differences compared to the Lua extension: LuaSandbox has support for time and memory limits. LuaSandbox ... or security, and several were patched accordingly. LuaSandbox has a PHP interface which is more complex, precise ... owerful, but it is less convenient for developers. LuaSandbox supports only Lua 5.1. It is difficult to change t ... his, because LuaSandbox uses heavily modified Lua standard libraries, and ...
https://man.plustar.jp/php/intro.luasandbox.html - [similar]
Register a set of PHP functions as a Lua library 9045
« LuaSandbox::pauseUsageTimer LuaSandbox::setCPULimit » PHP Manual LuaSandbox Register a set of ... PHP functions as a Lua library LuaSandbox::registerLibrary (PECL luasandbox >= 1.0.0) LuaSan ... set of PHP functions as a Lua library 説明 public LuaSandbox::registerLibrary ( string $libname , array $functi ... t calling Lua functions and the return values, see LuaSandboxFunction::call() . パラメータ libname The name of t ... P functions to call from Lua <?php // create a new LuaSandbox $sandbox = new LuaSandbox (); // Register some fun ...
https://man.plustar.jp/php/luasandbox.registerlibrary.html - [similar]
Load a precompiled binary chunk into the Lua environment 9014
« LuaSandbox::getVersionInfo LuaSandbox::loadString » PHP Manual LuaSandbox Load a precompiled b ... inary chunk into the Lua environment LuaSandbox::loadBinary (PECL luasandbox >= 1.0.0) LuaSandbox: ... binary chunk into the Lua environment 説明 public LuaSandbox::loadBinary ( string $code , string $chunkName = ' ... ' ): LuaSandboxFunction Loads data generated by LuaSandboxFunction ... ::dump() . パラメータ code Data from LuaSandboxFunction::dump() . chunkName Name for the loaded fu ...
https://man.plustar.jp/php/luasandbox.loadbinary.html - [similar]
Set the CPU time limit for the Lua environment 9014
« LuaSandbox::registerLibrary LuaSandbox::setMemoryLimit » PHP Manual LuaSandbox Set the CPU tim ... e limit for the Lua environment LuaSandbox::setCPULimit (PECL luasandbox >= 1.0.0) LuaSandbox ... CPU time limit for the Lua environment 説明 public LuaSandbox::setCPULimit ( float | bool $limit ): void Sets th ... fter the call to this method exceeds this limit, a LuaSandboxTimeoutError exception is thrown. Time used in PHP ... 例 例1 Calling a Lua function <?php // create a new LuaSandbox $sandbox = new LuaSandbox (); // set a time limit ...
https://man.plustar.jp/php/luasandbox.setcpulimit.html - [similar]
Call a function in a Lua global variable 8952
« LuaSandbox LuaSandbox::disableProfiler » PHP Manual LuaSandbox Call a function in a Lua global ... variable LuaSandbox::callFunction (PECL luasandbox >= 1.0.0) LuaSandbo ... ll a function in a Lua global variable 説明 public LuaSandbox::callFunction ( string $name , mixed ...$args ): a ... t calling Lua functions and the return values, see LuaSandboxFunction::call() . パラメータ name Lua variable nam ... 例 例1 Calling a Lua function <?php // create a new LuaSandbox $sandbox = new LuaSandbox (); // Call Lua's string ...
https://man.plustar.jp/php/luasandbox.callfunction.html - [similar]
Pause the CPU usage timer 8952
« LuaSandbox::loadString LuaSandbox::registerLibrary » PHP Manual LuaSandbox Pause the CPU usage ... timer LuaSandbox::pauseUsageTimer (PECL luasandbox >= 1.4.0) LuaSan ... UsageTimer — Pause the CPU usage timer 説明 public LuaSandbox::pauseUsageTimer (): bool Pauses the CPU usage tim ... Manipulating the usage timer <?php // create a new LuaSandbox and set a CPU limit $sandbox = new LuaSandbox (); ... 2()' )-> call (); echo "It did not?\n" ; } catch ( LuaSandboxTimeoutError $ex ) { echo "It did! " . $ex -> getMe ...
https://man.plustar.jp/php/luasandbox.pauseusagetimer.html - [similar]
Wrap a PHP callable in a LuaSandboxFunction 8812
« LuaSandbox::unpauseUsageTimer LuaSandboxFunction » PHP Manual LuaSandbox Wrap a PHP callable i ... n a LuaSandboxFunction LuaSandbox::wrapPhpFunction (PECL luasandb ... ox >= 1.2.0) LuaSandbox::wrapPhpFunction — Wrap a PHP callable in a LuaSan ... dboxFunction 説明 public LuaSandbox::wrapPhpFunction ( callable $function ): LuaSandbo ... xFunction Wraps a PHP callable in a LuaSandboxFunction , so it can be passed into Lua as an anony ...
https://man.plustar.jp/php/luasandbox.wrapphpfunction.html - [similar]
The LuaSandboxFunction class 8237
« LuaSandbox::wrapPhpFunction LuaSandboxFunction::call » PHP Manual LuaSandbox The LuaSandboxFun ... ction class The LuaSandboxFunction class (PECL luasandbox >= 1.0.0) はじめに ... Lua function, allowing it to be called from PHP. A LuaSandboxFunction may be obtained as a return value from Lua ... rameter passed to a callback from Lua, or by using LuaSandbox::wrapPhpFunction() , LuaSandbox::loadString() , or ... LuaSandbox::loadBinary() . クラス概要 class LuaSandboxFunctio ...
https://man.plustar.jp/php/class.luasandboxfunction.html - [similar]
PREV 1 2 3 4 5 NEXT