为什么下面的代码不起作用?我对我的一些 PHP 有点模糊,因为我已经做了几个月了。
<?php include 'connect.php';
?>
<?php
if (file_exists($Theme_directory."'/".$Theme_current."/header.php"))
{
echo '<p>It exists.</p>';
}
else
{
echo '<p>It does not exist.</p>';
}
?>
我的 connect.php 文件中使用的变量如下:
//CloudBurst Info
//If you mess with these, make sure that you are changing the directories, as well.
$Theme_directory ='themes';
$Theme_current ='default';
当我可以让它识别存在于themes/default/header.php 中的文件时,我将包含它。