AI智能
改变未来

php去除deprecated的实例方法

1、找到并打开“php/php.ini”文件。

2、修改内容为“error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_WARNING”即可。

去掉PHP的中警告(warning)、deprecate等提示的方法

打开php/php.ini:

修改

error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED

error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_WARNING

知识点扩展

php Deprecated 解决办法

这个问题是因为php版本过高。

在php5.3中,正则函数ereg_replace已经废弃,而dedecms还继续用。有两个方案可以解决以上问题:

1、把php版本换到v5.3下。

2、继续使用v5.3,修改php.ini文件

;extension=php_mbstring.dll

改为

extension=php_mbstring.dll

;mbstring.func_overload = 0

修改为:

mbstring.func_overload = 7

或者使用其他的函数:

define(\’DEDEADMIN\’, ereg_replace(\”[/\\\\]{1,}\”, \’/\’, dirname(__FILE__) ) );

//改为

define(\’DEDEADMIN\’, preg_replace(\”/[\\/\\\\\\\\]{1,}/\”, \’/\’, dirname(__FILE__) ) );

注:因为preg_replace比ereg_replace的执行速度快,PHP推荐使用preg_replace.

到此这篇关于php去除deprecated的实例方法的文章就介绍到这了,更多相关php去除deprecated的方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

  • 解决php用mysql方式连接数据库出现Deprecated报错问题
  • php5.3提示Function ereg() is deprecated Error问题解决方法
  • PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
  • session在php5.3中的变化 session_is_registered() is deprecated in
  • php提示Call-time pass-by-reference has been deprecated in的解决方法[已测]
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » php去除deprecated的实例方法