|
|
|
ช่วยดูโค้ดให้หน่อยครับว่าผิดตรงไหนหรือต้องเพิ่มตรงไหน |
|
|
|
|
|
|
|
Code (PHP)
คือว่ามันจะแปลงค่าไม่ได้เมื่อตัวเลขเกินหลักล้าน
<?php
function convert($number){
$txtnum1 = array('ศูนย์','หนึ่ง','สอง','สาม','สี่','ห้า','หก','เจ็ด','แปด','เก้า','สิบ');
$txtnum2 = array('','สิบ','ร้อย','พัน','หมื่น','แสน','ล้าน');
$number = str_replace(",","",$number);
$number = str_replace(" ","",$number);
$number = explode(".",$number);
$strlen = strlen($number[0]);
$convert = '';
for($i=0;$i<$strlen;$i++){
$n = substr($number[0], $i,1);
if($n!=0){
if($i==($strlen-1) AND $n==1){
$convert .= 'เอ็ด';
} elseif($i==($strlen-2) AND $n==2){
$convert .= 'ยี่';
} elseif($i==($strlen-2) AND $n==1){
$convert .= '';
} else{
$convert .= $txtnum1[$n];
}
$convert .= $txtnum2[$strlen-$i-1];
}
}
{
$strlen = strlen($number[1]);
for($i=0;$i<$strlen;$i++){
$n = substr($number[1], $i,1);
if($n!=0){
if($i==($strlen-1) AND $n==1){
$convert .= 'หนึ่ง';
} elseif($i==($strlen-2) AND $n==2){
$convert .= 'สอง';
} elseif($i==($strlen-2) AND $n==1){
$convert .= 'หนึ่ง';
} else{
$convert .= $txtnum1[$n];
}
}
}
}
return $convert;
}
$x = '540933321933';
echo $x.' => '.convert($x);
?>
Tag : PHP
|
|
|
|
|
|
Date :
2014-10-05 14:06:29 |
By :
Gozzila |
View :
624 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$txtnum2 = array('','สิบ','ร้อย','พัน','หมื่น','แสน','ล้าน','สิบ','ร้อย','พัน','หมื่น','แสน','ล้าน');
|
|
|
|
|
Date :
2014-10-05 14:33:26 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|