Home > Backend Development > PHP Tutorial > PHP获取网站域名跟地址的代码

PHP获取网站域名跟地址的代码

WBOY
Release: 2016-06-13 13:09:09
Original
812 people have browsed it

PHP获取网站域名和地址的代码
http://www.jb51.net/article/15514.htm

	function PMA_getenv($var_name) {
		if (isset ( $_SERVER [$var_name] )) {
			return $_SERVER [$var_name];
		} elseif (isset ( $_ENV [$var_name] )) {
			return $_ENV [$var_name];
		} elseif (getenv ( $var_name )) {
			return getenv ( $var_name );
		} elseif (function_exists ( 'apache_getenv' ) && apache_getenv ( $var_name, true )) {
			return apache_getenv ( $var_name, true );
		}
		return '';
	}
	if (empty ( $HTTP_HOST )) {
		if (PMA_getenv ( 'HTTP_HOST' )) {
			$HTTP_HOST = PMA_getenv ( 'HTTP_HOST' );
		} else {
			$HTTP_HOST = '';
		}
	}
	//echo htmlspecialchars($HTTP_HOST );
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