The void function is as follows: call_user_method () (use call_user_func () instead) call_user_method_array () (use call_user_func_array () instead) define_syslog_variables () dl () ereg () (use preg
The void function is as follows:
Call_user_method () (use call_user_func)
Call_user_method_array () (use call_user_func_array)
Define_syslog_variables ()
Dl ()
Ereg () (use preg_match () instead)
Ereg_replace () (use preg_replace)
Eregi () (replaced by preg_match () and 'I' modifier)
Eregi_replace () (use preg_replace () in combination with the 'I' modifier)
Set_magic_quotes_runtime () and its alias function magic_quotes_runtime ()
[Color = olive] session_register () (use $ _ SESSION to replace all variables)
Session_unregister () (use $ _ SESSION to replace all variables)
Session_is_registered () (use $ _ SESSION to replace all variables)
Set_socket_blocking () (use stream_set_blocking)
Split () (use preg_split () instead)
Spliti () (replaced by preg_split () and 'I' modifier)
SQL _regcase ()
Mysql_db_query () (replace mysql_select_db () with mysql_query)
Mysql_escape_string () (use mysql_real_escape_string)
The name of the region passed by the string is discarded. use the LC _ * series constant instead.
The is_dst parameter of mktime (). it is replaced by the new time zone handler.
Solution: replace regular expressions in the editplus editor.
Replace ereg (), eregi (): replace with preg_match
Ereg \ ("([^"] +) "with: preg_match ("/\ 1 /"
Ereg \ ('([^ "] +)' is replaced with: preg_match ('/\ 1 /'
Eregi \ ("([^"] +) "with: preg_match ("/\ 1/I"
Replace eregi \ ('([^ "] +)' with: preg_match ('/\ 1/I'
Replace ereg_replace (), eregi_replace (): replace with preg_replace ()
Ereg_replace \ ("([^"] +) "with: preg_replace ("/\ 1 /"
Replace ereg_replace \ ('([^ "] +)' with: preg_replace ('/\ 1 /'
Ereg_ireplace \ ("([^"] +) "with: preg_replace ("/\ 1/I"
Replace ereg_ireplace \ ('([^ "] +)' with: preg_replace ('/\ 1/I'
If the first parameter of ereg_replace is not a regular expression, replace it directly with str_replace.
Replace split with explode or preg_split