包含在包含文件中不适用于PHP

时间:2012-10-01 09:05:51

标签: php function include

  

可能重复:
  How to get useful error messages in PHP?

我有以下HTML列表:

<ul id="ulGroups">
<?php
include('organizer_picturearchive_groups.php');
?>
</ul>

我正在尝试包含此文件,其中还包含另一个文件:

<?php
include('lib/organizer_functions/picture_archive.php');
    echo select_all_picture_category_groups();
?>

基本上,我要做的是调用picture_archive.php文件中的函数。我在organizer_picturearchive_groups.php文件中这样做。 我将此文件包含在html列表所在的第一个文件中。我没有从那里粘贴整个代码,因为它很多,但它有效。

但是包含的东西没有,因为当我试图在“organizer_picturearchive_groups.php”文件中创建一个测试echo语句时,它可以工作,我可以看到我正在打印的文本。

您是否有可能导致此问题的想法?

1 个答案:

答案 0 :(得分:1)

仔细检查路径。如果organizer_picturearchive_groups.php与代码位于同一目录中,请尝试将路径配置为relative:

<?php
include('./organizer_picturearchive_groups.php');
?>