Lua::registerCallback

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

Lua::registerCallbackEnregistre une fonction PHP en Lua

Description

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

Enregistre une fonction PHP en Lua, portant le nom de "$name".

Liste de paramètres

name

function

Une fonction de rappel PHP valide

Valeurs de retour

Retourne $this, null si de mauvais arguments sont passés, ou false si une erreur d'un autre type survient.

Exemples

Exemple #1 Exemple avec Lua::registerCallback()

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

L'exemple ci-dessus va afficher :

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