如何判断请求是从我的电脑到php页面?

时间:2013-04-09 01:17:14

标签: php debugging

如何确定请求是否来自我的电脑到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';
}

1 个答案:

答案 0 :(得分:0)

我想在您的本地计算机上,您的网站位于localhost / mylocalwebsite下。如果是这样,只需检查您是否在这种环境中就是这样。

<?php
  if($_SERVER['SERVER_NAME'] == 'localhost') {
    echo "foo";
  }