reenadak

Check if on localhost or remote server

Apr 30th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. function is_localhost() {
  2.     $whitelist = array( '127.0.0.1', '::1' );
  3.     return in_array( $_SERVER['REMOTE_ADDR'], $whitelist);
  4. }
Advertisement
Add Comment
Please, Sign In to add comment