NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
~~~ /** * Function gettime * 时间转换(将时分秒转换为秒) * @param $n INT秒 */ public function gettime($time){ $explodetime1 = explode("时",$time); $time_shi=$explodetime1[0]; $explodetime2 =explode("分",$explodetime1[1]); $time_fen=$explodetime2[0]; $explodetime3 = explode("秒",$explodetime2[1]); $time_miao=$explodetime3[0]; $timeallmiao = $time_shi*3600+$time_fen*60+$time_miao; return $timeallmiao; } ~~~