downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

LuaClosure> <Lua::include
[edit] Last updated: Fri, 07 Jun 2013

view this page in

Lua::registerCallback

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

Lua::registerCallbackRegister a PHP function to Lua

Descrierea

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

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 Lua::registerCallback - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites