I have upgraded php and now im getting the ereg_replace deprecated errors.

I have done some searching round web and found that I can use preg instead but not sure how to change this code correctly

$scriptName = ereg_replace(
    "^".$_SERVER["DOCUMENT_ROOT"], "", 
    $_SERVER["SCRIPT_FILENAME"]
);
link|improve this question

75% accept rate
So... where's the joke? – Goran Jovic Feb 10 '11 at 17:51
@Goran No joke here, folks. Move it along. – Linus Kleen Feb 10 '11 at 17:52
@Linus: A dirty trick, indeed. – Goran Jovic Feb 10 '11 at 17:53
oh come on a replacement for ereg REPLACE?! good job my main job is not comedy :( – fishboy1669 Feb 10 '11 at 18:03
feedback

2 Answers

up vote 1 down vote accepted

Just adding delimiters won't work when special characters are included in $_SERVER["DOCUMENT_ROOT"]'s value. You need to escape them as follows:

$scriptName = preg_replace(
  "/^".preg_quote($_SERVER["DOCUMENT_ROOT"],"/")."/",
  "", 
  $_SERVER["SCRIPT_FILENAME"]
);
link|improve this answer
cheers @Highly Irregular – fishboy1669 Feb 15 '11 at 1:40
feedback

Replace the e with a p.

Add a delimiter to the beginning and end of that first argument. Traditionally, people use slashes (/), but I like to use ~ as there is less chance of actually using that character in the regular expression.

link|improve this answer
No. That'll not do it. preg_replace expects delimiters, whereas ereg_replace doesn't. You should rephrase that answer a bit. – Linus Kleen Feb 10 '11 at 17:51
@Linus Rephrased. – sdleihssirhc Feb 10 '11 at 17:53
There you go. +1 – Linus Kleen Feb 10 '11 at 17:54
2  
prpgrpplacp errors out on my machine. :) – Tim Pietzcker Feb 10 '11 at 18:16
@Tim That means you have your PHP configured wrong. Open up php.ini in a text editor and find the following line: la_disparition= Set it equal to p. If you're on a shared host, you can do it on the fly by calling gadsby('p'). – sdleihssirhc Feb 10 '11 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.