Skip to content

Instantly share code, notes, and snippets.

@mdjekic
mdjekic / validate_cidr.php
Created February 7, 2018 11:41
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)
{