Lua::registerCallback
(No version information available, might only be in Git)
Lua::registerCallback — Register a PHP function to Lua
Description
Register a PHP function to Lua as a function named "$name"
Parameters
-
name
-
-
function
-
A valid PHP function callback
Return Values
Returns $this, NULL
for wrong arguments or FALSE
on
other failure.
Examples
Example #1 Lua::registerCallback()example
<?php
$lua = new Lua();
$lua->registerCallback("echo", "var_dump");
$lua->eval(<<<CODE
echo({1, 2, 3});
CODE
);
?>
The above example will output:
array(3) { [1]=> float(1) [2]=> float(2) [3]=> float(3) }
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Другие базовые расширения
- Lua
- Функция Lua::assign() - Assign a PHP variable to Lua
- Функция Lua::call() - Call Lua functions
- Функция Lua::__construct() - Lua constructor
- Функция Lua::eval() - Evaluate a string as Lua code
- Функция Lua::getVersion() - The getversion purpose
- Функция Lua::include() - Parse a Lua script file
- Функция Lua::registerCallback() - Register a PHP function to Lua
Коментарии
// init lua
$lua = new Lua();
/**
* Hello world method
*/
function helloWorld()
{
return "hello world";
}
// register our hello world method
$lua->registerCallback("helloWorld", helloWorld);
$lua->eval("
-- call php method
local retVal = helloWorld()
print(retVal)
");
// register our hello world method but using an other name
$lua->registerCallback("worldHello", helloWorld);
// run our lua script
$lua->eval("
-- call php method
local retVal = worldHello()
print(retVal)
");