<br>
和<hr>
标记在PhpStorm中不起作用,当我在PhpStorm中运行我的index.php
文件时,此代码为:
<?php
$a=10;
echo "This is $a";
echo "\n";
echo 'This is $a';
echo "\n";
echo "<hr>";
echo "<br>";
print "This is $a";
?>
我在控制台得到这个:
This is 10
This is $a
<hr><br>This is 10
为什么会这样?
答案 0 :(得分:4)
PHPStorm控制台会显示完全输出。这很准确。
<hr>
和<br>
标记是HTML。在控制台中,您将会像这样看到它们。
当您在网络浏览器中加载页面时,这些HTML标记将显示为水平规则和空行,如您所愿。
有关PHPStorm运行PHP代码的不同选项的详细信息,请参阅此处:
https://www.jetbrains.com/phpstorm/help/running-php-applications.html