I have a script that throws me errors because I run PHP 5.3.1
What Do I have to use in the example?

$row[$j] = ereg_replace("\n", "\\n", $row[$j]);

Deprecated: Function ereg_replace() is deprecated in..

link|improve this question

79% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Use preg_replace instead, just add delimiters.

$row[$j] = preg_replace("#\n#", "\\n", $row[$j]);
link|improve this answer
+1 for mentioning the delimiters, and that they don't have to be forward slashes. – Skilldrick Nov 19 '10 at 14:57
second that, cheers. – FFish Nov 20 '10 at 10:51
feedback

Use the preg_replace function instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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