每次我尝试回显一个字符串时,都没有新行。我如何使用 php 在 php 中调用 echo 时换行$_GET
?
这是我的代码:
<?php
$text = "Hello world";
$text2 = $_GET['msg'];
echo $text2
?>
这就是我在网址中输入的内容:
http://localhost/hello.php?msg=hello%0Dworld
或者这个:
http://localhost/hello.php?msg=hello%0Aworld
甚至这个:
http://localhost/hello.php?msg=hello%0D%0Aworld
echo 必须是换行符,请不要说我应该使用与$_GET
. 它一定要是$_GET