admin管理员组

文章数量:1344937

I have a JavaScript code that can replace new lines with %0D%0A

I need the same code in PHP.

This is how my JavaScript code looks like:

text = text.replace(/\n\r?/g, '%0D%0A');

I tried with PHP but I am getting only one line without newlines.

I have a JavaScript code that can replace new lines with %0D%0A

I need the same code in PHP.

This is how my JavaScript code looks like:

text = text.replace(/\n\r?/g, '%0D%0A');

I tried with PHP but I am getting only one line without newlines.

Share Improve this question edited Mar 1, 2014 at 15:06 dachi 1,60211 silver badges15 bronze badges asked Mar 1, 2014 at 14:57 user1477332user1477332 3253 gold badges4 silver badges21 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

You don't need regular expressions for that. Simple string replacement will be enough.
Use str_replace function:

$test = 'Some very long text with multiple lines...';
$newText = str_replace(PHP_EOL, '%0D%0A', $text);

New line character differs in various systems. It's not a good idea to hard-code \n\r. Better solution is to use PHP_EOL constant.

a literal translation of your java code into php could use preg_replace http://www.php/preg_replace

<?php
$text = "some text";
$text = preg_replace("\r\n","%0D%0A",$text);
?>

本文标签: javascriptHow to replace new line with 0D0A with PHPStack Overflow