Created
March 28, 2017 18:25
-
-
Save GarySwift/b0862388bf6537871658a59641090701 to your computer and use it in GitHub Desktop.
Detect if localhost
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Detect if localhost | |
* | |
* @return true if using localhost | |
*/ | |
function is_localhost() { | |
$whitelist = array( '127.0.0.1', '::1' ); | |
if( in_array( $_SERVER['REMOTE_ADDR'], $whitelist) ) { | |
return true; | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment