PHP获取网站源目录有几种方法

WBOY
Release: 2016-06-13 10:32:53
Original
994 people have browsed it

PHP获取网站根目录有几种方法?
举个例子:


  ├
  │ ├
  │ │ └category.php
  │ │index.php
  │ └config.php
  └

如果category.php要引用config.php的内容,那用相对路径的写法就是'../config.php',可用绝对路径的话该怎么写呢?
原本我以为和HTML的写法一样,可以写成'/站点1/config.php',用'/'来代表根目录;可是测试的时候却出错了。请问在PHP里面,怎么样写才能得到http://根目录/站点1/config.php这样的形式?
 

------解决方案--------------------
[
code=PHP]

"http://".$_SERVER ['HTTP_HOST'].$_SERVER['PHP_SELF']

[/code]

PHP code
"http://".$_SERVER ['HTTP_HOST'].“/config.php”<br><font color="#e78608">------解决方案--------------------</font><br>在根目录写一个config文件,把所有要用到的全局变量缓存.在文件头导入<br>以后就可以直接用了,请参考一下大型的网站.<br><font color="#e78608">------解决方案--------------------</font><br>$_SERVER["ROOT_DOCUMENT"]<br><br>好像是这个把<br><font color="#e78608">------解决方案--------------------</font><br>参考一下discuz吧,它也是可以在根目录下的某一目录的<br><font color="#e78608">------解决方案--------------------</font><br>$_SERVER['DOCUMENT_ROOT']<br><br>如果设置了virtualHost 则根目录为virtualHost 设定的根目录。<br>否则为apache 制定的document root 的根目录<br><font color="#e78608">------解决方案--------------------</font><br>$_SERVER['DOCUMENT_ROOT'] 就是网站的根<br><br>在网站的任意子目录下访问网站根下的文件都可以这样写:<br>require_once $_SERVER['DOCUMENT_ROOT'] . '/config.php';<br><br>如果你有权限编辑 php.ini 文件则可以指定 auto_prepend_file<br>如 auto_prepend_file = "lib/TObject.php"<br>每当php被执行的时候,程序 lib/TObject.php 都将被执行,从而达到不需要在每个php程序中书写嵌入文件的代码的目的,也免去了路径的烦恼<br><br><font color="#e78608">------解决方案--------------------</font><br>绝对路径和相对路径。呵呵。<div class="clear">
                 
              
              
        
            </div>
Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template