本文整理汇总了PHP中DateUtil::getTimeInterval方法的典型用法代码示例。如果您正苦于以下问题:PHP DateUtil::getTimeInterval方法的具体用法?PHP DateUtil::getTimeInterval怎么用?PHP DateUtil::getTimeInterval使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DateUtil
的用法示例。
在下文中一共展示了DateUtil::getTimeInterval方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getWxTokenFromDB
/**
* get token from db
*/
public static function getWxTokenFromDB()
{
// 因为在wxindex.php里面已经引用过inc.db.php,所以这里是能拿到db的
global $db;
$tokenObj = $db->fetch($db->query("SELECT * FROM wx_token where id = 1"));
if ($tokenObj) {
// 如果不为空
$tokenFromDB = $tokenObj['token'];
$updatetime = $tokenObj['updatetime'];
$currenttime = DateUtil::getCurrentTime();
/*$days=floor((strtotime($currenttime)-strtotime($updatetime))/86400);
$hour=floor((strtotime($currenttime)-strtotime($updatetime))%86400/3600);
$minute=floor((strtotime($currenttime)-strtotime($updatetime))%86400/60);
$second=floor((strtotime($currenttime)-strtotime($updatetime))%86400%60);
$seconds = $days * 24 + $hour * 60 + $minute * 60 + $second;*/
$seconds = DateUtil::getTimeInterval($currenttime, $updatetime);
LogUtil::logs("getWxTokenFromDB=====> " . $seconds, getLogFile("/business.log"));
if ($seconds >= 6000) {
// 如果当前操作时间的间隔已经大于或等于6500秒了
//LogUtil::logs("WxUtil getWxTokenFromDB :已超时,重新获取token", getLogFile('/business.log'));
return self::initWxTokenToDB();
}
//LogUtil::logs("WxUtil getWxTokenFromDB :未超时,使用数据库token", getLogFile('/business.log'));
return $tokenFromDB;
}
//LogUtil::logs("WxUtil self getWxTokenFromDB :数据库不存在token,初始化token", getLogFile('/business.log'));
return self::initWxTokenToDB();
}