Russian Ukraine English
Catalog RSS


Variable functions

PHP supports the concept of variable functions. This means that if a variable name has parentheses appended to it, PHP will look for a function with the same name as whatever the variable evaluates to, and will attempt to execute it. Among other things, this can be used to implement callbacks, function tables, and so forth.

Example 12-1. Variable function example


<?php function foo() {     echo "In foo()<br>\n"; }  function bar( $arg = '' ) {     echo "In bar(); argument was '$arg'.<br>\n"; }  $func = 'foo'; $func(); $func = 'bar'; $func( 'test' ); ?>      

Led