วันอาทิตย์ที่ 26 กรกฎาคม พ.ศ. 2558

แปลงวันที่ php

function ThaiDateLong($date) {  
$_month_name = array("01"=>"มกราคม","02"=>"กุมภาพันธ์",
"03"=>"มีนาคม","04"=>"เมษายน","05"=>"พฤษภาคม",
"06"=>"มิถุนายน","07"=>"กรกฏาคม","08"=>"สิงหาคม",
"09"=>"กันยายน","10"=>"ตุลาคม","11"=>"พฤศจิกายน",
"12"=>"ธันวาคม");
$yy=substr($date,0,4);$mm=substr($date,5,2);$dd=substr($date,8,2);$time=substr($date,11,8);
$yy+=543;
// $dateT=intval($dd)." ".$_month_name[$mm]." ".$yy." ".$time;
$dateT=intval($dd)." ".$_month_name[$mm]." พ.ศ. ".$yy;
  return $dateT;
}     //echo ThaiEachDate("2008-05-19");

function ThaiDate($date){
$_month_name = array("01"=>"ม.ค.","02"=>"ก.พ.","03"=>"มี.ค.","04"=>"เม.ย.","05"=>"พ.ค.","06"=>"มิ.ย.","07"=>"ก.ค.","08"=>"ส.ค.","09"=>"ก.ย.","10"=>"ต.ค.","11"=>"พ.ย.","12"=>"ธ.ค.");
$yy=substr($date,0,4);$mm=substr($date,5,2);$dd=substr($date,8,2);$time=substr($date,11,8);
$yy+=543;
$dateT=intval($dd)." ".$_month_name[$mm]." ".$yy." ".$time;
// $dateT=intval($dd)." ".$_month_name[$mm]." ".$yy;
return $dateT;
}

ไม่มีความคิดเห็น:

แสดงความคิดเห็น