在这种情况下,您会遇到 mysqli_fetch_array 函数将所有列值组合到单个列中的问题,这使得单独访问它们变得困难。
要解决此问题,请考虑使用以下方法:
<code class="php">$posts = array(); while($row = mysqli_fetch_array($result)) { $posts[] = $row; }</code>
通过将整行存储为 $posts 数组中的元素,您可以稍后使用嵌套循环访问各个值:
<code class="php"><?php foreach ($posts as $row) { foreach ($row as $element) { echo $element . "<br>"; } } ?></code>
这将打印列中的所有值,每行一个。或者,您也可以使用数组索引直接访问特定元素:
<code class="php">$postId = $row[0];</code>
以上是如何使用 mysqli_fetch_array 分隔 MySQL 列值?的详细内容。更多信息请关注PHP中文网其他相关文章!