PHP - 如果域
我在多域 1 模板设置上有以下代码:
<?php $host = parse_url($domain, PHP_URL_HOST);
if($host == 'www.justdoors.co') {
echo "action goes here";
} ?>
由于某种原因,当我在 www.justdoors.co 域上时,它没有执行该操作,我缺少什么?
I have the following piece of coding on a multi-domain 1 template setup:
<?php $host = parse_url($domain, PHP_URL_HOST);
if($host == 'www.justdoors.co') {
echo "action goes here";
} ?>
For some reason it's not carrying out the action when I'm on the www.justdoors.co domain, what am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
$_SERVER['SERVER_NAME']
或$_SERVER['HTTP_HOST']
变量Use
$_SERVER['SERVER_NAME']
or$_SERVER['HTTP_HOST']
variable我之前已经在我的服务器上成功使用过这个。
I have used this successfully on my server before.
我已经尝试过了,它工作得很好..
I have tried this and it's working perfectly ..