我无法比较格式为“hh:mm:ss”的两个时间值。在我的 php 脚本中,我在我的数据库上运行 SQL 查询,它返回了一些愚蠢的东西,比如 19:19:00<19:01:03
SELECT * FROM temperature WHERE (datum>='$Datum' && vreme>'$Vreme')
试试这个(将查询放在单引号中'
)
$q=mysql_query("SELECT * FROM temperature WHERE (datum >= '".$Datum."' AND vreme > '".$Vreme."')");
试试这个——
//Pass the values as YYYY/MM/DD
function getdateDiff($dformat, $endDate, $beginDate)
{
$date_parts1=explode($dformat, $beginDate);
$date_parts2=explode($dformat, $endDate);
// Provide (mm/dd/yyyy) in gregoriantojd function.
$start_date = gregoriantojd($date_parts1[1], $date_parts1[2], $date_parts1[0]);
$end_date = gregoriantojd($date_parts2[1], $date_parts2[2], $date_parts2[0]);
return $end_date - $start_date;
}