|
|
|
หาค่าวันที่ เช่น วันที่จากข้อมูลได้ 2009-11-3 ลบกับวันที่ปัจจุบัน น้อยกว่าเท่าไร? |
|
|
|
|
|
|
|
echo ( strtotime(date('Y-m-d')) - strtotome('2009-11-03') ) / (60*60*24);
|
|
|
|
|
Date :
2010-01-07 13:18:11 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเขียนแบบนี้ครับ
echo ( strtotime(date('Y-m-d')) - strtotime('$dates_post') ) / (60*60*24);
แต่ค่าที่ได้เป็นแบบนี้อ่ะครับ
14615.7083333
ไม่ทราบว่านำไปใช้ยังไงครับ?
|
|
|
|
|
Date :
2010-01-07 13:25:50 |
By :
oasiis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo ( strtotime(date('Y-m-d')) - strtotime($dates_post) ) / (60*60*24);
หรือไม่ก็
echo ( strtotime(date('Y-m-d')) - strtotime(substr($dates_post,0,10)) ) / (60*60*24);
ครับ
|
|
|
|
|
Date :
2010-01-07 13:29:49 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
strtotime(substr($dates_post,0,10)) ) / (60*60*24);
มันหมายความว่าไงหรอครับ?
|
|
|
|
|
Date :
2010-01-07 13:32:38 |
By :
oasiis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
substr($dates_post,0,10)
บางทีอาจจะมีชมนาทีติดมาก็ตัดออกเหลือ 10 ตัวแรกครับ
'2009-11-3 00:00:01' -> '2009-11-3' ครับ
|
|
|
|
|
Date :
2010-01-07 13:42:19 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่อ ขอบคุณมากครับ
|
|
|
|
|
Date :
2010-01-07 13:47:47 |
By :
oasiis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|