开发者

deprecated runtime error [duplicate]

开发者 https://www.devze.com 2023-02-13 03:35 出处:网络
This question already has answers here: Closed 11 years ago. Possible Duplicate: Why is ereg deprecate开发者_运维技巧d in PHP?
This question already has answers here: Closed 11 years ago.

Possible Duplicate:

Why is ereg deprecate开发者_运维技巧d in PHP?

I was uploading files to server but I got the following error

Deprecated: Function ereg_replace() is deprecated in /home/vicedu/public_html/includes
/functions/sessions.php on line 112

What can I do? Please help


The function ereg_replace() is deprecated that mean superseded and should be avoided form php in replace of ereg_replace() you can use preg_replace. this will definately solve your problem.


You can switch to preg_replace since eregi has been deprecated, and update your pattern Since the preg_* variant is PCRE syntax.

0

精彩评论

暂无评论...
验证码 换一张
取 消