0

就像标题所说的那样,PHP 在一个简单的 if 比较语句上真的让我感到困惑,它返回的结果与它应该返回的相反。我正在尝试比较首先转换为字符串的 2 个日期时间:

//Fetched db query, this returns 2012-06-23 16:00:00
$databaseDateTime = strtotime($row['time']);
//This now returns 1340481600

//today's date and time I'm comparing to, this returns 2012-06-22 17:14:46 
$todaysDateTime = strtotime(date("Y-m-d H:i:s"));
//this now returns 1340399686

太好了,到目前为止一切正常。现在这是事情变得多毛的地方:

if ($databaseDateTime < $todaysDateTime) { $eventType = 'past'; }

这会返回“过去”,这当然不应该。请告诉我我错过了什么。我的项目类型取决于此功能是密封的。

**编辑*** 感谢大家抽出时间来帮助我。让我发布整个代码,因为你们中的一些人需要更多上下文。请求来自 IOS5 到我的后端代码,并且 json 被发送回手机。

<?php
 //all included files including $link to mysqli_db and function sendResponse()

 function getEvents($eventType, $eventArray) {
   global $link;
   global $result;
   global $i;
   global $todaysDateTime;
   foreach ($eventArray as $key => $value) {
       $sqlGetDeal = mysqli_query($link, "SELECT time FROM deals WHERE id='$value' AND  active='y' LIMIT 1") or die ("Sorry there has been an error!");

    while ($row = mysqli_fetch_array($sqlGetDeal)) {

       //compare times to check if event already happened
       $databaseDateTime = strtotime($row['time']);
       if ($databaseDateTime < $todaysDateTime) { $eventType = 'past'; }

      $result[$i] = array(
        'whenDeal' => $eventType,
        'time' => $databaseDateTime,
      );
      $i++;
    }//end while

  }//end foreach
 }

 if (isset($_GET['my'])) {
   //$_GET['my'] comes in as a string of numbers separated by commas e.g. 3,2,6,3
   $myDeals = preg_replace('#[^0-9,]#', '', $_GET['my']);
   $todaysDateTime = strtotime(date("Y-m-d H:i:s"));
   $result = array();

   $kaboomMy = explode(",", $myDeals);

   $i = 1;
   if ($myEvents != "") {
     getEvents('future', $kaboomMy);
   }//end if

   sendResponse(200, json_encode($result));

 } else {
   sendResponse(400, 'Invalid request');
 } //end $_POST isset

?>
4

2 回答 2

0

找到了一个快速解决这个问题的方法。我刚刚在我的函数中添加了一个局部变量并重新排列了我的比较语句

//added local variable $eventTyppe to function
$eventTyppe;

更改比较:

 if ($databaseDateTime < $todaysDateTime) { $eventType = 'past'; } 

到:

if ($todaysDateTime < $databaseDateTime ) { 
     $eventTyppe = $eventType; 
  } else { 
     $eventTyppe = 'past'; 
  }

请注意,如果我重新排列比较:

if ($databaseDateTime < $todaysDateTime ) { 
   $eventTyppe = 'past'; 
 } else { 
   $eventTyppe = $eventType; 
 }

我仍然得到同样的错误。这是我见过的最奇怪的事情,也是我遇到的第一个 PHP 错误(我假设它是一个 PHP 错误)。

于 2012-06-22T23:26:37.067 回答
0

你能打印出这一行之前的时间值吗?

if ($databaseDateTime < $todaysDateTime) { $eventType = '过去'; }

既然那个被宣布为全球性的,我想知道它是否会错误地返回。

于 2012-06-23T02:01:15.303 回答