Home > php教程 > php手册 > body text

php 获取网站根目录的写法

WBOY
Release: 2016-05-25 16:45:55
Original
1795 people have browsed it

最简单的全局变量函数就是$_SERVER['DOCUMENT_ROOT']与$HTTP_SERVER_VARS['DOCUMENT_ROOT']了,但是我们要调用文件的话就无法这样实现了,具体如何写呢,下面我们一起来看看.

用php开发网站的时候有时候经常要用到当前网站的根目录,比如包含一个文件,代码如下:

include_once("./includefile.php");

那么要想写根目录的形式应该怎么写呢?这时候通常用 dirname(__FILE__) 这个函数,意思是获取当前文件所在的根目录,那么这个php语句就是这样的了:

include_once(dirname(__FILE__) ."/includefile.php");

将下面的代码放在网站根目录下的一个文件中,以便在其它文件中引用.

路径方式,代码如下:

define('BASE_PATH',str_replace('\','/',realpath(dirname(__FILE__).'/'))."/"); 
echo BASE_PATH; 
//输出结果:E:/www.phprm.com/
Copy after login

url方式,代码如下:

$PHP_SELF=$_SERVER['PHP_SELF']; 
$url='http://'.$_SERVER['HTTP_HOST'].substr($PHP_SELF,0,strrpos($PHP_SELF,'/')+1); 
echo $url;
Copy after login

注意大小写问题,linux下对大小写敏感,要养成认真对待大小写的习惯,以免win主机换到linux下不兼容的问题.

教程地址:

欢迎转载!但请带上文章地址^^

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!