mysqli_fetch_array While 循環列問題
使用mysqli_fetch_array 函數迭代SQL 時,可能會遇到單一查詢函數的情況不是單獨的元素。
要解決此問題,請建立一個陣列來儲存從mysqli_fetch_array 循環檢索到的行:
<code class="php">$posts = array(); while ($row = mysqli_fetch_array($result)) { $posts[] = $row; }</code>
現在,$posts 陣列的每個元素將是一個包含各個列的陣列:
<code class="php">$posts[0]['post_id'] // Returns the value of post_id $posts[0]['post_title'] // Returns the value of post_title</code>
如果您需要所有列值作為單一字串,您可以使用以下方法實現:
<code class="php">$fullRow = $row[0] . $row[1] . $row[2];</code>
但是,這將導致連接的字串而不是單獨的元素。對於對每一列的單獨訪問,建議使用基於數組的解決方案。
以上是在 while 迴圈中使用 mysqli_fetch_array 時,為什麼所有欄位都作為單一串聯傳回?的詳細內容。更多資訊請關注PHP中文網其他相關文章!