Home  >  Article  >  php教程  >  php获得网站根目录的几个方法

php获得网站根目录的几个方法

WBOY
WBOYOriginal
2016-05-26 08:19:592444browse

在php中我们要得到网站根目录可以用很多全局变量实现了,如可以利用__file__或DOCUMENT_ROOT等等变量来取得,下面一起看看几个例子.

__file__

dirname(__file__) //获取到的是这个软连接本身的绝对目录

如果想要在软连接的可执行php文件中获取网站的根目录的方法是:

$dir = $_SERVER['DOCUMENT_ROOT'] ; //#获取当前运行脚本所在的文档根目录。

php获取网站根目录方法一:

<?php 
	define("WWWROOT",str_ireplace(str_replace("/","\\",$_SERVER[&#39;PHP_SELF&#39;]),&#39;&#39;,__FILE__)."\\"); 
	echo WWWROOT ; 
	 

php获取网站根目录方法二:

<?php 
	define(&#39;WWW_PATH&#39;,str_replace(&#39;\\&#39;,&#39;/&#39;,realpath(dirname(__FILE__).&#39;/../&#39;)));  //定义站点目录 
	 

php获取网站根目录方法三:

$_SERVER['DOCUMENT_ROOT'] //当前运行脚本所在的文档根目录,在服务器配置文件中定义

其它的获取目录的方法:

$_SERVER['SCRIPT_FILENAME'] #当前执行脚本的绝对路径名.

$_SERVER['PATH_TRANSLATED'] #当前脚本所在文件系统(不是文档根目录)的基本路径.

$_SERVER['SCRIPT_NAME'] #包含当前脚本的路径,这在页面需要指向自己时非常有用.

文章地址:

转载随意^^请带上本文地址!

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