本文目录一览:
- 1、php require()失效
- 2、php引用错误,require
- 3、安装的php中不能一个php require 另一个php,一require就出错,但是单个的php页面却能运行.
- 4、php网站报错require_once(): Failed opening required.....
- 5、php.ini中require_once()无法执行
php require()失效
最好使用绝对路径引入类文件,相对路径会依赖include_path,不同环境配置不一样,会有
不一样的结果。
也就是说,改成:
require dirname(__FILE__) . '/wd_plus/app/ThinkPHP/ThinkPHP.php';
这样。
php引用错误,require
你的路径问题。。根目录和admin目录引用肯定不一样的,按楼上的做~`
安装的php中不能一个php require 另一个php,一require就出错,但是单个的php页面却能运行.
调用路径出错了吧?
你这错误提示翻译成中文是:打开失败:没有这样的文件或目录
可见, 是路径出错, 与环境无关!
php网站报错require_once(): Failed opening required.....
直接存数组里的字符串就行了。如$a="0,1,2,3,";或$a=join(",",array(0,1,2,3));mysql_query("INSERT INTO admin (monday) VALUES($a)"); 这样字段monday的就是0,1,2,3,读取的时候要重新组成数组的话就分割重组。-phprequire失败
你可以去后盾人平台看看,里面的东西不错
php.ini中require_once()无法执行
通过报错信息我们能够看到('failed to open stream','Failed opening required'),这是被包含的文件无法打开。造成这种错误原因有两个。
1、在source_index.php这个文件同级目录下面没有function.php这个文件。
2、或者是require_once(data/function.php);这条语句写错了,造成无法定位到正确的目录。我在下面再给你介绍一下目录定位的一些知识。
2.1、require_once("data/function.php");
意思是:调用source_index.php所处目录下的data目录下面的function.php文件。
2.2、require_once("/data/function.php");
意思是:调用source_index.php所在目录根目录下面的data目录下面的function.php文件。
2.3、require_once("../data/function.php");
意思是:调用source_index.php上一级目录下面的data目录下面的function.php文件。
2.4、require_once("./data/function.php");
意思是:调用source_index.php当前目录下的data目录下面的function.php文件,与require_once("data/function.php");该条语句的作用是一样的。 -phprequire失败
希望上面的知识能帮你解决这个问题。