php时间输出结果减去一分钟
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php时间输出结果减去一分钟相关的知识,希望对你有一定的参考价值。
如:
<?=date("m-d H:i",strtotime($rs["kgtime"]));?>
假设结果是09-03-23:30,如何让它变成09-03-23:29
前提是
$rs[‘kgtime‘]
必须是合法的日期时间格式, 要带有年份!
date(‘m-d H:i‘, strtotime( ‘-1 Minute‘, strtotime($rs[‘kgtime‘])));
浪迹在互联网的大潮中
以上是关于php时间输出结果减去一分钟的主要内容,如果未能解决你的问题,请参考以下文章