php8.5
Home/ Manual/ luasandbox / luasandbox/ LuaSandbox::callFunction

LuaSandbox::callFunction

PHP function Edit on GitHub ✎

(PECL luasandbox >= 1.0.0)

Call a function in a Lua global variable

Description

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.

Parameters

name

Lua variable name.

args

Arguments to the function.

Return Values

Returns an array of values returned by the Lua function, which may be empty, Falseforfailure.

Examples

Calling a Lua function

php
<?php

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

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

?>

Source: reference/luasandbox/luasandbox/callfunction.xml · from the official PHP manual (php/doc-en)