วันจันทร์ที่ 18 พฤษภาคม พ.ศ. 2563

PHP เพิ่ม - ลด - วันเวลา


<?php

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

return $dateT; 
}


 echo thaiLdate(Date("Y-m-d", strtotime("$theData[6] - 1 DAY")))  // ลด  1 วัน , Month, Year

?>