Our source is open
The syntax highlighted source is automatically generated by PHP from
the plaintext script.
If you're interested in what's behind the several functions we
used, you can always take a look at the source of the following files:
Of course, if you want to see the source
of this page, we have it available.
You can also browse the SVN repository for this website on
svn.php.net.
Source of: /manual/en/book.funchand.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.basic.vartype.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'book.funchand.php',
1 => 'Function Handling',
),
'up' =>
array (
0 => 'refs.basic.vartype.php',
1 => 'Variable and Type Related Extensions',
),
'prev' =>
array (
0 => 'function.filter-var.php',
1 => 'filter_var',
),
'next' =>
array (
0 => 'intro.funchand.php',
1 => 'Introduction',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1 class="title">Function Handling</h1>
<ul class="chunklist chunklist_book"><li><a href="intro.funchand.php">Introduction</a></li><li><a href="funchand.setup.php">Installing/Configuring</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="funchand.requirements.php">Requirements</a></li><li><a href="funchand.installation.php">Installation</a></li><li><a href="funchand.configuration.php">Runtime Configuration</a></li><li><a href="funchand.resources.php">Resource Types</a></li></ul></li><li><a href="funchand.constants.php">Predefined Constants</a></li><li><a href="ref.funchand.php">Function handling Functions</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.call-user-func-array.php">call_user_func_array</a> — Call a user function given with an array of parameters</li><li><a href="function.call-user-func.php">call_user_func</a> — Call a user function given by the first parameter</li><li><a href="function.create-function.php">create_function</a> — Create an anonymous (lambda-style) function</li><li><a href="function.forward-static-call-array.php">forward_static_call_array</a> — Call a static method and pass the arguments as array</li><li><a href="function.forward-static-call.php">forward_static_call</a> — Call a static method</li><li><a href="function.func-get-arg.php">func_get_arg</a> — Return an item from the argument list</li><li><a href="function.func-get-args.php">func_get_args</a> — Returns an array comprising a function's argument list</li><li><a href="function.func-num-args.php">func_num_args</a> — Returns the number of arguments passed to the function</li><li><a href="function.function-exists.php">function_exists</a> — Return TRUE if the given function has been defined</li><li><a href="function.get-defined-functions.php">get_defined_functions</a> — Returns an array of all defined functions</li><li><a href="function.register-shutdown-function.php">register_shutdown_function</a> — Register a function for execution on shutdown</li><li><a href="function.register-tick-function.php">register_tick_function</a> — Register a function for execution on each tick</li><li><a href="function.unregister-tick-function.php">unregister_tick_function</a> — De-register a function for execution on each tick</li></ul></li></ul></div><?php manual_footer(); ?>