Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created November 27, 2013 13:33
Show Gist options
  • Save ruliarmando/7675733 to your computer and use it in GitHub Desktop.
Save ruliarmando/7675733 to your computer and use it in GitHub Desktop.
transform numbers into string
<?php
function transform($numbers){
$rules = [
1 => 'a',
2 => 'b',
3 => 'c',
4 => 'd',
5 => 'e',
6 => 'f',
7 => 'g',
8 => 'h',
9 => 'i',
0 => 'j',
];
foreach(str_split(strval($numbers)) as $s){
echo $rules[intval($s)];
}
}
transform(12500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment