如何确定请求是否来自我的电脑到php页面?
我希望print_r($GLOABALS)
从我的计算机调试我的网站,但我不希望其他计算机执行此操作。
<?php
// can not use ip to judge wheather this computer is mine
// for my ip will change always.
if($is_my_computer){
echo 'yes';
}
答案 0 :(得分:0)
我想在您的本地计算机上,您的网站位于localhost / mylocalwebsite下。如果是这样,只需检查您是否在这种环境中就是这样。
<?php
if($_SERVER['SERVER_NAME'] == 'localhost') {
echo "foo";
}