Skip to content

Instantly share code, notes, and snippets.

@brendanashworth
Last active January 3, 2016 23:19
Show Gist options
  • Save brendanashworth/8534725 to your computer and use it in GitHub Desktop.
Save brendanashworth/8534725 to your computer and use it in GitHub Desktop.
Star out the last number set of an IP.
<?php
$ip = "10.0.11.145";
$array = explode(".", $ip);
$numbers = $array[0] . "." . $array[1] . "." . $array[2];
$numbers .= ".";
for($i = 0; $i < strlen($array[3]); $i++) {
$numbers .= "*";
}
echo $numbers;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment