PHP :没有可读的输出,当我使用小于符号,结合 var_dump() 功能

PHP : No readable output, when I use the less than symbol, in combination with the var_dump() function

为什么在 PHP 这个代码片段中没有返回可读的输出,

$string = "<Hello World!";
var_dump($string);

但是这个

$string = ">Hello World!";
var_dump($string);

回来了

">Hello World!"

您似乎将此 var 转储到 html 文件中,浏览器对此进行解析:

"<Hello World!"

作为

<hello world!"="" <="" body="">
</hello>

这个片段

$string = ">Hello World!"

无法解析为 html 标记,因此您可以获得可读的输出。