override_function (stringoriginal_name, stringnew_name)
override_function
Renames orig_name to new_name in the global function_table. Useful for temporarly overriding builtin functions.
Example 1. override_function() example
<?php rename_function('mysql_connect', 'debug_mysql_connect' ); ?>