Skip to content

Instantly share code, notes, and snippets.

@tux-tn
Created April 18, 2012 13:52
Show Gist options
  • Save tux-tn/2413716 to your computer and use it in GitHub Desktop.
Save tux-tn/2413716 to your computer and use it in GitHub Desktop.
A MAC Adress generator written in PHP
<?php
function macgen(){
$adress = '01';
for ($i=0;$i<5;$i++) {
$oct = strtoupper(dechex(mt_rand(0,255)));
strlen($oct)<2 ? $adress .= ":0$oct" : $adress .= ":$oct";
}
return $adress;
}
echo macgen();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment