博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP问题 —— Deprecated: Function ereg_replace() is de
阅读量:6538 次
发布时间:2019-06-24

本文共 292 字,大约阅读时间需要 1 分钟。

1.1  Deprecated: Function ereg_replace() is deprecated

1.1.1  现象

运行应用出现如下错误提示:

Deprecated: Function ereg_replace() is deprecated in xxx.php on line ###.

1.1.2  原因

php在5.2版本以前ereg_replace都使用正常,在5.3以后,就要用preg_replace来代替。

1.1.3  解决

改成preg_replace()函数即可。

转载于:https://my.oschina.net/tywali/blog/674452

你可能感兴趣的文章