Horje
check if host is local in php Code Example
check if host is local in php
$whitelist = array(
    '127.0.0.1',
    '::1'
);

if(!in_array($_SERVER['REMOTE_ADDR'], $whitelist)){
    // not valid
}




Php

Related
Laravel - Query Builder Raw Query selectRaw Code Example Laravel - Query Builder Raw Query selectRaw Code Example
php check if folder empty Code Example php check if folder empty Code Example
laravel use config Code Example laravel use config Code Example
php auto redirect Code Example php auto redirect Code Example
orwhere in wherehas laravel Code Example orwhere in wherehas laravel Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6