LuaSandbox::callFunction

(PECL luasandbox >= 1.0.0)

LuaSandbox::callFunction β€” Call a function in a Lua global variable

θͺ¬ζ˜Ž

public function LuaSandbox::callFunction(string $name, mixed ...$args): array|bool

Calls a function in a Lua global variable.

If the name contains "." characters, the function is located via recursive table accesses, as if the name were a Lua expression.

If the variable does not exist, or is not a function, false will be returned and a warning issued.

For more information about calling Lua functions and the return values, see LuaSandboxFunction::call().

パラパータ

name
Lua variable name.
args
Arguments to the function.

ζˆ»γ‚Šε€€

Returns an array of values returned by the Lua function, which may be empty, ε€±ζ•—γ—γŸε ΄εˆγ« false を返します.

δΎ‹

δΎ‹1 Calling a Lua function

<?php

// create a new LuaSandbox
$sandbox = new LuaSandbox();

// Call Lua's string.match
$captures = $sandbox->callFunction( 'string.match', $string, $pattern );

?>
οΌ‹add a note

User Contributed Notes

There are no user contributed notes for this page.