PHP setTime 设置当前时间的代码

前端之家收集整理的这篇文章主要介绍了PHP setTime 设置当前时间的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="19021" class="copybut" id="copybut19021" onclick="doCopy('code19021')"> 代码如下:

<div class="codebody" id="code19021">
function _niceTime($minute){
$m = $minute - 5;
$date = new DateTime();
$date->setTime(9,00);//设置每天早上9点
return date("Y-m-d H:i",strtotime("+$m minute",$date->getTimestamp()));
}

原文链接:https://www.f2er.com/php/27041.html

猜你在找的PHP相关文章