如何获取magento开发者ip?
我使用这段代码在每一侧都有一个 js 弹出窗口,告诉访问者该商店生产力不高:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
if ($ip == 'xxx.xxx.xxx.xxx' OR $ip == 'xxx.xxx.xxx.xx') { ?>
You are a developer
<?php } else { ?>
You are a visitor
<?php } ?>
我的问题是,如何在此代码中使用来自 magento 后端的开发人员 Ip ->系统->配置->开发商->开发者客户端限制
I use this code to have a js popup on each side telling visitors that the shop is not productive:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
if ($ip == 'xxx.xxx.xxx.xxx' OR $ip == 'xxx.xxx.xxx.xx') { ?>
You are a developer
<?php } else { ?>
You are a visitor
<?php } ?>
My question is, how can I use the developer Ip from the magento backend in this code
->System -> Configuration -> Developer -> Developer Client Restrictions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以像任何其他配置值一样获得此值
,然后
或只是
或只是(正如 MagePsycho 在评论中指出的那样)
you can get this like any other config value
and then
or just
or just (as pointed by MagePsycho in comments)
尝试以下
Try following