如何阻止 PHP echo 命令返回页面上的所有内容

问题描述 投票:0回答:1

尝试创建一个名为“test.php”的文件,其中包含四行

<?php
echo "abc";
?>
some other stuff 

并在 XAMPP 中运行它。我希望它仅回显引用的字符串“abc”,但它会将其与页面上的其他所有内容一起回显,在本例中回显“abcsome other stuff”。我怎样才能防止它包含“其他一些东西”?

php xampp echo
1个回答
2
投票

您可以在电脑上测试一下。

<?php
echo "abc";
exit;
?>
some other stuff 
© www.soinside.com 2019 - 2024. All rights reserved.