成都公司:成都市成华区建设南路160号1层9号
重庆公司:重庆市江北区红旗河沟华创商务大厦18楼
PHP5.3作废函数的处理方法
作废函数如下:
call_user_method()(<span style="COLOR: rgb(255,0,0)">运用 call_user_func() 替代)

call_user_method_array() (<span style="COLOR: rgb(255,0,0)">运用 call_user_func_array() 替代)
define_syslog_variables()
dl()
ereg() (<span style="COLOR: rgb(255,0,0)">运用 preg_match() 替代)
ereg_replace() (<span style="COLOR: rgb(255,0,0)">运用 preg_replace() 替代)
eregi() (<span style="COLOR: rgb(255,0,0)">运用 preg_match() 共同 ‘i’ 批改符替代)
eregi_replace() (<span style="COLOR: rgb(255,0,0)">运用 preg_replace() 共同 ‘i’ 批改符替代)
set_magic_quotes_runtime() 以及它的别号函数 magic_quotes_runtime()
[color=olive]session_register() (<span style="COLOR: rgb(255,0,0)">运用 $_SESSION 超悉数变量替代)
session_unregister() (<span style="COLOR: rgb(255,0,0)">运用 $_SESSION 超悉数变量替代)
session_is_registered() (<span style="COLOR: rgb(255,0,0)">运用 $_SESSION 超悉数变量替代)
set_socket_blocking() (<span style="COLOR: rgb(255,0,0)">运用 stream_set_blocking() 替代)
split() (<span style="COLOR: rgb(255,0,0)">运用 preg_split() 替代)
spliti() (<span style="COLOR: rgb(255,0,0)">运用 preg_split() 共同 ‘i’ 批改符替代)
sql_regcase()
mysql_db_query() (<span style="COLOR: rgb(255,0,0)">运用 mysql_select_db() 和 mysql_query() 替代)
mysql_escape_string() (<span style="COLOR: rgb(255,0,0)">运用 mysql_real_escape_string() 替代)
抛弃以字符串传递区域设置称号. 运用 LC_* 系列常量替代.
mktime() 的 is_dst 参数. 运用新的时区处置函数替代.
处置办法:editplus编纂器中,正则交换
交换ereg(),eregi():用preg_match交换
ereg("([^"]+)<span style="COLOR: rgb(255,0,0)">"交换为:preg_match("/1/"
ereg('([^"]+)'<span style="COLOR: rgb(255,0,0)">交换为:preg_match('/1/'
eregi("([^"]+)"<span style="COLOR: rgb(255,0,0)">交换为:preg_match("/1/i"

eregi('([^"]+)'<span style="COLOR: rgb(255,0,0)">交换为:preg_match('/1/i'
交换ereg_replace(),eregi_replace():<span style="COLOR: rgb(255,0,0)">用preg_replace()交换
ereg_replace("([^"]+)"<span style="COLOR: rgb(255,0,0)">交换为:preg_replace("/1/"
ereg_replace('([^"]+)'<span style="COLOR: rgb(255,0,0)">交换为:preg_replace('/1/'
ereg_ireplace("([^"]+)"<span style="COLOR: rgb(255,0,0)">交换为:preg_replace("/1/i"
ereg_ireplace('([^"]+)'<span style="COLOR: rgb(255,0,0)">交换为:preg_replace('/1/i'
假如 ereg_replace 的第一个参数不是正则表达式,<span style="COLOR: rgb(255,0,0)">可以用 str_replace 直接来交换
split用<span style="COLOR: rgb(255,0,0)">explode交换或preg_split交换

