mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-22 20:31:21 +01:00
16 lines
243 B
PHP
16 lines
243 B
PHP
<?php
|
|
|
|
namespace app\helpers;
|
|
|
|
class IPHelper
|
|
{
|
|
/**
|
|
* @param string $ip
|
|
* @return bool
|
|
*/
|
|
public static function isLocal($ip)
|
|
{
|
|
return !filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE);
|
|
}
|
|
}
|