>  기사  >  백엔드 개발  >  require_once 不能加载被包孕的文件里的内容

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

WBOY
WBOY원래의
2016-06-13 13:06:53687검색

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.