|
|
|
ช่วยหน่อยค่ะ อยากให้ในฐานข้อมูล เก็บวันที่แบบ วว/ดด/ปป |
|
|
|
|
|
|
|
เก็บแบบนี้ถูกแล้วครับ ส่วนตอนที่แสดงผลค่อยเข้า function ของ php เพื่อแสดง format ที่ต้องการครับ
Code (PHP)
<?php
function DateThai($strDate)
{
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
$strHour= date("H",strtotime($strDate));
$strMinute= date("i",strtotime($strDate));
$strSeconds= date("s",strtotime($strDate));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
$strMonthThai=$strMonthCut[$strMonth];
return "$strDay $strMonthThai $strYear, $strHour:$strMinute";
}
$strDate = "2008-08-14 13:42:44";
echo "ThaiCreate.Com Time now : ".DateThai($strDate);
?>
PHP Thai Date/Time Function
|
|
|
|
|
Date :
2015-09-04 09:37:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
วางโค้ดอย่างนี้หรือป่าวคะ
Code (PHP)
<form name="frmSearch" method="get" action="<?php $_SERVER['SCRIPT_NAME'];?>">
<div align="center">
<div class="panel " style="max-width:400px">
<h4>ค้นหาข้อมูลด้วย วันที่ยืมอุปกรณ์คอมพิวเตอร์</h4>
<?php
function DateThai($strDate)
{
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
$strMonthThai=$strMonthCut[$strMonth];
return "$strDay $strMonthThai $strYear";
}
?>
<input name="txtKeyword" class="form-control" type="date" id="txtKeyword" >
|
|
|
|
|
Date :
2015-09-04 09:50:31 |
By :
teenplus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
วางไฟล์ในพวก config หรือ function ก็ได้ครับ จะได้เรียกใช้ได้หลาย ๆ หน้า
|
|
|
|
|
Date :
2015-09-04 09:54:30 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่า
|
|
|
|
|
Date :
2015-09-04 12:59:11 |
By :
teenplus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|