|
|
|
รบรวนผู้รู้ครับ ลบวันเวลาและนำมาเทียบกับ วันเดือนปีชั่วโมงนาทีปัจจุบัน |
|
|
|
|
|
|
|
Code (PHP)
<?php
function HIS2Second( $str_time){
sscanf($str_time, "%d:%d:%d", $hours, $minutes, $seconds);
return ($hours * 3600) + ($minutes * 60) + (isset($seconds)? $seconds : 0);
}
$a_date="2015-07-25 "; //วันที่บันทึก
$a_time="10:00"; //เวลาบันทึก
//$b_date=date("Y-m-d H:i"; //เวลาปัจจุบัน
$c_time="02:30"; //เวลาที่ต้องการลบ
$target = strtotime( $a_date . ' ' . $a_time) - HIS2Second($c_time);
echo date('Y-m-d H:i:s', $target), time()<$target ? ' Target is future time' : 'target is past time';
?>
|
|
|
|
|
Date :
2015-07-25 21:08:07 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|