 |
| ::: T4VN Statistics ::: |
PHP Scripts : 61 |
PHP Example : 67 |
PHP Tutorials : 21 |
PHP News : 93 |
Total Coupon : 36 |
Other Tutorials : |
Member : 209 |
Visitor Online : 4 |
Today Visit: 390 |
Total Visitor : 262400 |
Most Online : 31 |
|
 |
 |
Numbers To Letters
Author : benw
This code will convert numbers to letters. I'm not sure what it can be used for but someone on this site asked me to help them, so here it is.
| PHP Example : | | <?php
/*Numbers to Letters
Ben Wasley
Ben W Consulting
http://www.benwconsulting.com
*/
function num_let($num)
{
//Create an array of letters
$letter = array('j','a','b','c','d','e','f','g','h','i');
$num = preg_split('//', $num, -1, PREG_SPLIT_NO_EMPTY);
foreach($num as $i)
{
$s.= $letter[$i];
}
return($s);
}
echo num_let('0294385720934856');
?>
| |
| |

|
 |
| ::: Resources ::: |
|
|
| ::: New Templates ::: |
|
| ::: Other Tutorials ::: |
|
 |