Skip to content

Instantly share code, notes, and snippets.

@GarySwift
Created March 28, 2017 18:25
Show Gist options
  • Save GarySwift/b0862388bf6537871658a59641090701 to your computer and use it in GitHub Desktop.
Save GarySwift/b0862388bf6537871658a59641090701 to your computer and use it in GitHub Desktop.
Detect if localhost
<?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