$_SERVER变量有很多您可能要考虑的值,其中一个是$_SERVER['HTTP_HOST']
(如果您想要查询的网站)。
$thisSite = 'http://'.$_SERVER['HTTP_HOST'].'/';
如果他们使用www,请使用stripos:
if (stripos($_SERVER['HTTP_HOST'],'www.') === 0) { /* they used www */ }
对于以下网址:
localhost/myblog/
http://domain.com/blog/
使用:get_site_url()