It seems to be simple, but I have problem.

ereg_replace("\n","\\n",$row)

into preg_replace.

Anyone could give me a hand?

link|improve this question

Also explained in the manual: php.net/manual/en/function.ereg-replace.php#98602 – mario Jun 13 '11 at 3:51
feedback

1 Answer

up vote 4 down vote accepted

The only thing you need to change (except function name) is to add delimiters to the pattern (slashes in this case):

preg_replace("/\n/", "\\n", $row);

However, in this particular case you do not need to use regexes (which are slow enough), simple str_replace would be fine:

str_replace("\n", "\\n", $row);
link|improve this answer
Thank you Yuri .. – Jeffz Jun 14 '11 at 4:02
feedback

Your Answer

 
or
required, but never shown

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