require_once 不能加载被包孕的文件里的内容

WBOY
发布: 2016-06-13 13:06:53
原创
691 人浏览过

require_once 不能加载被包含的文件里的内容
网站目录结构:
rootdir(D:\test)
  .....index.php
  .....class
     .....config.php
     .....db.class.php

内容:
index.php
    require_once('class/db.class.php');
  ?>
config.php
    $db_config['hostname'] = '192.168.1.22';
  ?>
问题:为什么写法1能正常运行,写法2不行呢
写法1:
  db.class.php
    require_once('D:/test/class/config.php');
  echo $db_config['hostname'] ;
  ?>
  访问:http://localhost/test/index.php
  能正常输出:192.168.1.12


写法2:
  db.class.php
    require_once('config.php');
  echo $db_config['hostname'] ;
  ?>
  访问:http://localhost/test/index.php
  不能正常输出:
  


------解决方案--------------------
require_once dirname(__FILE__) . '/config.php';
路径问题,用上面这个就可以了
------解决方案--------------------
首先,你的写法2并没有错
你用
print_r(get_included_files());
看看都加载了那些文件

估计与 test 所在目录中也有个 config.php

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!