今天阳光明媚,万里无云,小记一下php5.3x被弃用的部分函数及代替方法
下面列举了部分被弃用的函数:call_user_method():(使用 call_user_func() 替代)call_user_method_array(): (使用 call_user_func_array() 替代)define_syslog_variables()dl()ereg() 使用 preg_match() 替代ereg_replace() 使用 preg_replace() 替代eregi() 使用 preg_match() 配合 'i' 修正符替代eregi_replace() 使用 preg_replace() 配合 'i' 修正符替代set_magic_quotes_runtime() 以及它的别名函数 magic_quotes_runtime()session_register() 使用 $_SESSION 超全部变量替代session_unregister() 使用 $_SESSION 超全部变量替代session_is_registered() 使用 $_SESSION 超全部变量替代set_socket_blocking() 使用 stream_set_blocking() 替代split() 使用 preg_split() 替代)spliti() 使用 preg_split() 配合 'i' 修正符替代)sql_regcase()mysql_db_query() 使用 mysql_select_db() 和 mysql_query() 替代mysql_escape_string() 使用 mysql_real_escape_string() 替代废弃以字符串传递区域设置名称使用 LC_* 系列常量替代mktime() 的 is_dst 参数使用新的时区处理函数替代