Skip to content

Instantly share code, notes, and snippets.

@Aziz-Rahman
Last active August 29, 2015 14:17
Show Gist options
  • Save Aziz-Rahman/836761460f0a83afdc57 to your computer and use it in GitHub Desktop.
Save Aziz-Rahman/836761460f0a83afdc57 to your computer and use it in GitHub Desktop.
Random Character
<?php
function acakangkahuruf( $panjang ) {
$karakter= 'ABCDEFGHIJKL1234567890^()';
$string = '';
for ($i = 0; $i < $panjang; $i++) {
$pos = rand(0, strlen( $karakter )-1);
$string .= $karakter{$pos};
}
return $string;
}
// Pemanggilan >> echo acakangkahuruf(10);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment