2014-02-26 108 views

回答

4

在客觀的風格,你可以使用方法子和DateInterval對象:

$date = new DateTime(null, new DateTimeZone('Asia/Kolkata')); 

echo $date->format('H:i:s').PHP_EOL; 
$date->sub(new DateInterval('PT5M')); 
echo $date->format('H:i:s').PHP_EOL; 

結果:

17:44:04 
17:39:04 
6

this

PHP函數:

strtotime()

例子:

echo date('Y-m-d H:i:s', strtotime('-5 minutes')); 
1

沒有測試,但是這可能幫助.. $date->sub(new DateInterval('PT0H5M'));

鏈接::

http://www.php.net/manual/en/datetime.sub.php 
1

$日期=的strtotime(「 - 5分鐘「)

2

試試這個!希望這可以幫助...

$ date = new DateTime(null,new DateTimeZone('Asia/Kolkata'));

$ sysdate = date_format(strtotime($ date),'H:i:s');回覆日期('H:i:s',time($ sysdate) - 05 * 60);