标签: php
如果当前域为http://example.com
我该怎么做?
if (...){ include("../clicky.php"); }
答案 0 :(得分:2)
$_SERVER 可以在很多方面提供帮助
if($_SERVER['HTTP_HOST']=="example.com") { include("whatever"); }