I have this warning, Deprecated: Function ereg_replace() is deprecated someone please help me.
ereg_replace:
ereg_replace('([^(folder)])/images/flash', '"/folder/images/flash', $echotemp);
to preg_replace:
|
I have this warning, Deprecated: Function ereg_replace() is deprecated someone please help me. ereg_replace:
to preg_replace:
| ||||
|
feedback
|
|
A deprecated method is a method that will in the future be dropped out of the language you're using. Unless you've got control on the language specifications and roadmap, you don't have much leverage. You can still use the method, but it can disappear in a future update, and usually support about the method will just recommend switching to the new recommended ways of doing things. I recommend using the replacement method for ereg_replace. | |||
|
feedback
|
|
From: ereg_replace
.
Read: PCRE regex syntax And for your pattern:
| ||||
|
feedback
|
([^(folder)])means within a regex? – M42 Dec 27 '11 at 12:37