Hi, I'm trying to retrive the CIDR values instead of hostname values from the below array. How do I fix my code?
Thank you.
Thank you.
Code:
$blacklist_hosting_provider = array( '103.4.16.0/22' => 'exigent.com.au', '103.4.8.0/21' => 'amazon.com' ); foreach ($blacklist_hosting_provider as $cidr) { echo $cidr; }
Comment