RPeraltaJr
11/28/2018 - 4:56 PM

Whitelist Code

<?php 

$whitelist = array(
    '127.0.0.1',
    '::1'
);

if( !in_array($_SERVER['REMOTE_ADDR'], $whitelist) ):
    // not localhost
endif;