|
|
|
ขอโค้ด เปลี่ยนวัน เดือน ปี ( 1 กุมภาพันธ์ 2558 ) จากอารบิก ให้เป็นเลขไทย ช่วยหน่อยค่ะ |
|
|
|
|
|
|
|
<?php
$thai_month_arr=array(
"0"=>"",
"1"=>"มกราคม",
"2"=>"กุมภาพันธ์",
"3"=>"มีนาคม",
"4"=>"เมษายน",
"5"=>"พฤษภาคม",
"6"=>"มิถุนายน",
"7"=>"กรกฎาคม",
"8"=>"สิงหาคม",
"9"=>"กันยายน",
"10"=>"ตุลาคม",
"11"=>"พฤศจิกายน",
"12"=>"ธันวาคม"
);
function thai_date($time){
global $thai_day_arr,$thai_month_arr;
$thai_date_return.= " ".date("j",$time);
$thai_date_return.=" ".$thai_month_arr[date("n",$time)];
$thai_date_return.= " ".(date("Yํ",$time)+543);
return $thai_date_return;
}
?>
<?php $eng_date=time();
echo
thai_date($eng_date);
?>
Tag : PHP, MySQL, Windows
|
|
|
|
|
|
Date :
2015-11-10 23:22:48 |
By :
Chunna |
View :
1092 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
function arabic2thainum($match){
$x=array( '๐','๑','๒','๓','๔','๕','๖','๗','๘','๙');
return $x[ intval($match[0])];
}
echo preg_replace_callback('/[0-9]/', 'arabic2thainum', '1 กุมภาพันธ์ 2558');
|
ประวัติการแก้ไข 2015-11-11 06:14:24
|
|
|
|
Date :
2015-11-11 06:13:38 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|