Skip to content

Instantly share code, notes, and snippets.

View pavinjosdev's full-sized avatar
🏠
Working from home

Pavin Joseph pavinjosdev

🏠
Working from home
View GitHub Profile
@pavinjosdev
pavinjosdev / validate_cidr.php
Last active February 23, 2023 15:19 — forked from mdjekic/validate_cidr.php
PHP function for validating CIDR notation format (ipv4, ipv6)
<?php
/**
* Validates the format of a CIDR notation string
*
* @param string $cidr
* @return bool
*/
function validateCidr($cidr)
{