Dutch PHP Conference 2025 - Call For Papers

LuaSandbox::loadString

(PECL luasandbox >= 1.0.0)

LuaSandbox::loadStringLoad Lua code into the Lua environment

Опис

public LuaSandbox::loadString(string $code, string $chunkName = ''): LuaSandboxFunction

Loads Lua code into the Lua environment.

This is the equivalent of standard Lua's loadstring() function.

Параметри

code

Lua code.

chunkName

Name for the loaded chunk, for use in error traces.

Значення, що повертаються

Returns a LuaSandboxFunction which, when executed, will execute the passed $code.

Приклади

Приклад #1 Loading code into Lua

<?php

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

// Load the code
$function = $sandbox->loadString(
<<<CODE
return "Hello, world"
CODE
);

// Execute the loaded code
var_dump( $function->call() );

?>

Поданий вище приклад виведе:

array(1) {
  [0]=>
  string(12) "Hello, world"
}

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top