PHP错误无法打开流/打开失败

时间:2014-01-25 12:56:25

标签: php

这些是我的错误:

Warning: include(core/init.inc.php):
    failed to open stream: No such file or directory in test.php on line 2

Warning: include(): Failed opening '/core/init.inc.php'
    for inclusion (include_path='.;C:\php\pear') in test.php on line 2

这是我的代码:

init.inc.php

<?php
$path = dirname(__FILE__);

include("{$path}/inc/csv.inc.php");
include("{$path}/inc/users.inc.php");
?>

test.php的

<?php
include('/core/init.inc.php');
?>

通常我应该在这个白色的屏幕上,但我立即收到所有错误,任何人都知道这可能是?

我在网上关注了本教程:https://www.youtube.com/watch?v=TqhSrBJHTIY(3部分)

我想我已经在教程中了。然而做了同样的事情:

enter image description here

1 个答案:

答案 0 :(得分:1)

正如评论中所写,您的文件称为.inc.php - 它们被称为.inc。这意味着init.inc.php实际上存在,但init.inc确实存在。

enter image description here

您有两种选择:

  • 将您的init.inc重命名为init.inc.php,将csv.inc重命名为csv.inc.php,将users.inc重命名为users.inc.php
  • 将您的include语句更改为使用include('core/init.inc');