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 badges2 Answers
Reset to default 10You 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
版权声明:本文标题:javascript - How to replace new line with %0D%0A with PHP - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743762446a2534627.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论