Num Words

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<?

php
$num="2"
$o=array(1=>'one',2=>'two',3=>'three',4=>'four',5=>'five',6=>'six',7=>'seven',8=
>'eight',9=>'nine');
$t=array(2=>'twenty',3=>'thirty',4=>'forty',5=>'fifty',6=>'sixty',7=>'seventy',8
=>'eighty',9=>'ninty',10=>'ten',11=>'eleven',12=>'twelve',13=>'thirteen',14=>'fo
urteen',15=>'f
ifteen',16=>'sixtenn', 17=>'seventeen',18=>'eighteen',19=>'nineteen');
$i=strlen($num);
switch($i)
{
case 1: foreach($o as $k=>$v)
{
if($num==$k)
echo $v;
}
break;
case 2: $tp=substr($num,0,1);
foreach($t as $u=>$z)
{
if($tp==1 && $num=$u)
echo"$z";
else if($tp==$u)
echo"$z";
else
}
break;
}
?>

You might also like