CakeFest 2024: The Official CakePHP Conference

Lua::registerCallback

(No version information available, might only be in Git)

Lua::registerCallbackRegister a PHP function to Lua

Beschreibung

public Lua::registerCallback(string $name, callable $function): mixed

Register a PHP function to Lua as a function named "$name"

Parameter-Liste

name

function

A valid PHP function callback

Rückgabewerte

Returns $this, null for wrong arguments or false on other failure.

Beispiele

Beispiel #1 Lua::registerCallback()example

<?php
$lua
= new Lua();
$lua->registerCallback("echo", "var_dump");
$lua->eval(<<<CODE
echo({1, 2, 3});
CODE
);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

array(3) {
  [1]=>
  float(1)
  [2]=>
  float(2)
  [3]=>
  float(3)
}
add a note

User Contributed Notes 1 note

up
0
turn_and_turn at sina dot com
4 years ago
// 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)
");
To Top