從MySQL 查詢存取各個欄位
在MySQL 中,mysqli_fetch_array() 函式可用於從查詢結果擷取行,如下所示關聯數組。但是,在迭代多行時,通常會遇到一個問題,即給定行中的所有列都會組合成單一陣列元素。
解決方案:
要解決此問題並單獨存取列,您可以使用以下方法:
<code class="php">$posts = []; while ($row = mysqli_fetch_array($result)) { $posts[] = array( 'post_id' => $row['post_id'], 'post_title' => $row['post_title'], 'content' => $row['content'], // Add additional columns as needed... ); }</code>
使用此修改後的代碼:
透過利用此方法,您可以有效地迭代查詢結果中的多行並單獨存取列,使您能夠根據需要操縱和處理資料。
以上是如何從 MySQL 查詢結果存取各個欄位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!