摘要:
很多朋友的php程序当php的版本升级到5.3以后,会出现"Deprecated: Assigning the return value of new by reference is deprecated in"显示出来。这是因为5.3以后,不能使用"=&"符号,可以直接用"="就可以了。所以当出现... 阅读全文
摘要:
PHP5.3中 bool set_magic_quotes_runtime ( bool $new_setting )函数过时.把函数:set_magic_quotes_runtime($newsetting);替换成:ini_set("magic_quotes_runtime", $newsett... 阅读全文
摘要:
下面列举了部分被弃用的函数:call_user_method()(使用 call_user_func() 替代) call_user_method_array() (使用 call_user_func_array() 替代) define_syslog_variables() dl() ereg()... 阅读全文
摘要:
Zen Cart 138 在PHP5.3环境下出现的Fatal error: Cannot redeclare date_diff() in includes/functions/functions_general.php错误的解决方法原因是在这个文件中已存在函数:date_diff()了,此时,我... 阅读全文
摘要:
打开你的WordPress数据库,点击结构后面的SQL,输入下面一段命令执行UPDATE wp_users SET user_login = '新用户名', user_nicename = '新用户名', display_name = '新用户名' WHERE user_login = 'admin... 阅读全文