如何计算具有匹配ID的行?

时间:2017-09-06 17:29:23

标签: php mysql pdo

我目前在确定是否有任何行与特定用户ID匹配时遇到了一些困难。代码运行正常,但if语句(if($ notifs!== false)总是返回true,因此“未找到通知”从不显示。如何编写语句只检查与当前会话匹配的“receive_id” ID?

$user_id = $_SESSION['userID'];

if(isset($_POST["view"]))
{

$stmt = $user_notif->runQuery("SELECT * FROM tbl_users WHERE userID=:uid");
$stmt->execute(array(":uid"=>$user_id));
$row = $stmt->fetch(PDO::FETCH_ASSOC);

$stmt = $user_notif->runQuery("SELECT * FROM notif_follow WHERE receive_id= ? ORDER BY id DESC LIMIT 5");
$stmt->bindValue(1,$user_id);
$stmt->execute();
$notifs = $stmt->fetchAll(PDO::FETCH_ASSOC);

$notification = '';

if($notifs !== false)
 {
  foreach($notifs as $notif)
  {

  $send_id = $notif['send_id'];

  $query2 = $user_notif->runQuery("SELECT id FROM following WHERE user1_id=:uid1 AND user2_id=:uid2");
  $query2->execute(array(":uid1"=>$user_id,":uid2"=>$send_id));
  $query2result = $query2->fetch(PDO::FETCH_ASSOC);

  if($query2result !== false){
  $follow .= '<a href="followoff.php?id='.$send_id.'"><button class="button">Remove Channel</button></a>';
  }
  else{
  $follow .= '<a href="followon.php?id='.$send_id.'"><button class="button">Add Channel</button></a>';
  }

  $notification .= '
   <li>
     <div class="notifbox">
     <strong style="color: #4b8ed3;">'.$notif["send_name"].'</strong><p style="color: #fff;"> has added you.</p>

     '.$follow.'

&nbsp<a href="index.php?id='.$notif["send_id"].'"><button class="button">View Channel</button></a>
     </div>
   </li>
   <div class="sectionheader3"></div>
   ';

  }
 }
 else
 {
  $notification .= '<li><h2 style="color: #4b8ed3; padding: 10px;">No Notifications Found<h2></li>';
 }

3 个答案:

答案 0 :(得分:1)

http://php.net/manual/en/pdostatement.fetchall.php说:

  

如果获取结果为零,则返回空数组;如果失败则返回FALSE。

匹配零行的查询不是失败。它为您提供零匹配行的信息是成功的。

所以你不应该与$notifs !== false进行比较,false与布尔if (!$notifs) 完全比较。您可能希望与以下内容进行比较:

parse

这也将测试空数组。

答案 1 :(得分:1)

如果查询失败,

fetchAll仅返回false,但它没有失败。结果是一个数组。您最好检查count($notifs) > 0以及$notifs === false是否存在查询失败的可能性。

答案 2 :(得分:1)

尝试

if ($stmt->RowCount() > 0) {
$notifs = $stmt->fetchAll(PDO::FETCH_ASSOC);
//code here
}

而不是

$notifs = $stmt->fetchAll(PDO::FETCH_ASSOC);
if($notifs !== false) {
//code here
}