我有一个Profile.php
包含Profile_Control.php
和profile_control
包含的文件Profile_Model.php
。到这里为止,一切都很好。
我有另一个名为Upload.php
从中上传数据的脚本。这个 Upload.php 还包括Profile_Control.php
并且如你所知Profile_Control
包括Profile_Model.php
。现在我不知道为什么它会给出这样的错误。当 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