Lua::registerCallback

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

Lua::registerCallbackRegister a PHP function to Lua

Descrierea

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

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

Parametri

name

function

A valid PHP function callback

Valorile întoarse

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

Exemple

Example #1 Lua::registerCallback()example

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

Exemplul de mai sus va afișa:

array(3) {
  [1]=>
  float(1)
  [2]=>
  float(2)
  [3]=>
  float(3)
}
add a note 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