尝试创建一个名为“test.php”的文件,其中包含四行
<?php echo "abc"; ?> some other stuff
并在 XAMPP 中运行它。我希望它仅回显引用的字符串“abc”,但它会将其与页面上的其他所有内容一起回显,在本例中回显“abcsome other stuff”。我怎样才能防止它包含“其他一些东西”?
您可以在电脑上测试一下。
<?php echo "abc"; exit; ?> some other stuff