我有一個文件Profile.php
其中包括Profile_Control.php
和profile_control
包括Profile_Model.php
。每件事情都很好,直到這裏。無法打開流沒有這樣的文件或目錄。 php
我有另一個腳本名爲Upload.php
從中上傳數據。這upload.php的還包括Profile_Control.php
,正如你知道Profile_Control
包括Profile_Model.php
。現在我不知道它爲什麼做出這樣的error.When的Profile.php負載正常工作,但是當我上傳的數據,它說
Warning: include(../Model/Profile_Model.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\php\gagster\Control\Profile_Control.php on line 4
在upload.php的:
include_once("../../Control/Profile_Control.php");
在Profile.php:
include_once("../Control/Profile_Control.php");
在Profile_Control.php:
include_once("../Model/Profile_Model.php");
文檔結構:
+-Control/
| |
| +---- Profile_Control.php
|
+-Model/
| |
| +---- Profile_Model.php
|
+-Other/
|
+-- Upload/
|
+---- Upload.php
經常遇到此錯誤,並快速排除故障,請按照下列步驟操作:https://stackoverflow.com/a/36577021/2873507 –
可能重複[無法打開流:沒有這樣的文件或目錄]( http://stackoverflow.com/questions/36577020/failed-to-open-stream-no-such-file-or-directory) –