Skip to content

Instantly share code, notes, and snippets.

@INDIAN2020
Forked from thefuxia/function.is_local.php
Created October 5, 2016 12:07
Show Gist options
  • Save INDIAN2020/19f5b9b83b90169fe952058f70863de0 to your computer and use it in GitHub Desktop.
Save INDIAN2020/19f5b9b83b90169fe952058f70863de0 to your computer and use it in GitHub Desktop.
function is_local()
<?php
function is_local()
{
return ( '127.0.0.1' == $_SERVER["REMOTE_ADDR"]) ? TRUE : FALSE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment