我有一个 php 脚本,我希望它只有在您在浏览器中查看页面时才会显示此特定文本,并且它不包含在另一个脚本中。
例如
//foo.php
<?php
if(!included){
echo "You can only see this if this is the page you're viewing";
}
?>
//bar.php
<?php
include 'foo.php';
?>
现在,当您查看“bar.php”时,您不应该看到文本.. 但是如果您打开 foo.php,您将.. 我将如何执行此操作..?如果可能的话..