update : 2015.11.03
php.shukuma.com

검색:
 
 
Renames orig_name to new_name in the global function table

rename_function

(PECL apd >= 0.2)

rename_functionRenames orig_name to new_name in the global function table

설명

bool rename_function ( string $original_name , string $new_name )

Renames a orig_name to new_name in the global function table. Useful for temporarily overriding built-in functions.

인수

original_name

The original function name.

new_name

The new name for the original_name function.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 rename_function() example

<?php
rename_function
('mysql_connect''debug_mysql_connect' );
?>