Zephir\Utils::isBsd PHP Method

isBsd() public static method

Check if the host OS is BSD based
public static isBsd ( ) : boolean
return boolean
    public static function isBsd()
    {
        return false !== stristr(strtolower(PHP_OS), 'bsd');
    }