Home >Backend Development >PHP Tutorial >YII路径的问题。为什么这样做就会提示找不到文件

YII路径的问题。为什么这样做就会提示找不到文件

WBOY
WBOYOriginal
2016-06-06 20:44:491178browse

要在YII工程的目录里面增加文件,与基本的PHP加载文件方式一致。比如,要在protected增加一个function.php文件。那么,在index.php中间,直接:
require_once('./protected/function.php');
但是使用Yii::app()->request->baseUrl./protected/function.php。就会报出找不到文件的错误。比如:
require_once(Yii::app()->request->baseUrl.'/protected/function.php');
请问为什么第二种方式会出现找不到文件呢?
错误是:
require_once(/manyouren/2/protected/function.php): failed to open stream: No such file or directory

回复内容:

要在YII工程的目录里面增加文件,与基本的PHP加载文件方式一致。比如,要在protected增加一个function.php文件。那么,在index.php中间,直接:
require_once('./protected/function.php');
但是使用Yii::app()->request->baseUrl./protected/function.php。就会报出找不到文件的错误。比如:
require_once(Yii::app()->request->baseUrl.'/protected/function.php');
请问为什么第二种方式会出现找不到文件呢?
错误是:
require_once(/manyouren/2/protected/function.php): failed to open stream: No such file or directory

很多方法,这里就不粘贴了,具体请查看
http://zccst.iteye.com/blog/1233367

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn