PHP Manual
This manual is provided as a courtesy. It is not an official source. Please check php.net for updated information.
(PECL)
Syntax similar to create_function(). Overrides built-in functions (replaces them in the symbol table).
Example 1. override_function() example
<?phpoverride_function('test', '$a,$b', 'echo "DOING TEST"; return $a * $b;');?>