$sql3 = "SELECT ps.* from posts ps";
$result3 = $conn->query($sql3) or die(mysqli_error());
如何獲取php上該結果的行數?如何獲取mysql結果中的行數
$sql3 = "SELECT ps.* from posts ps";
$result3 = $conn->query($sql3) or die(mysqli_error());
如何獲取php上該結果的行數?如何獲取mysql結果中的行數
要麼
$total_rows = mysqli_num_rows ($result3);
或
$total_rows = $result3->num_rows;
會給你從查詢行的總數之前搜索。後者是進行OO編程的首選方式。
您可以通過PHP website閱讀完整的MySQLi API。
來源:
試試這個
$conn->affected_rows
計算器上快速搜索或谷歌可以幫助你和第一個結果會導致http://php.net/手冊/ en/mysqli-result.num-rows.php –
因爲即時通訊使用conn作爲對象im有麻煩使用conn受影響的行這就是爲什麼 – user2950179
而對於PDO:http://php.net/manual/en/pdostat ement.rowcount.php – cen