<?php
$gte = "2018-08-08"; $year=((int)substr($gte,0,4));//取得年份; $month=((int)substr($gte,5,2));//取得月份; $day=((int)substr($gte,8,2));//取得几号; $check_time = mktime(0,0,0,$month,$day,$year);
05-08 15:49