php pdo查詢記錄資料的方法:可以利用fetchAll()函數來查詢,如【$rows = $q->fetchAll();】。也可以利用sql count函數來查詢,如【"SELECT count(*) from db;"】。
取得正確的SELECT結果的行數的方法
(推薦教學:php影片教學)
1、使用fetchAll函數
$q = $db->query("SELECT ..."); $rows = $q->fetchAll(); $rowCount = count($rows);
2、使用sql count函數
$q = $db->query("SELECT count(*) from db;"); $rows = $q->fetch(); $rowCount = $rows[0];
從效率上來說,第二種方法更有優勢。
相關推薦:php訓練
#以上是php pdo怎麼查詢記錄數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!