PHP mysqli_fetch_row() 関数

❮ PHP MySQLi リファレンス

結果セットから行を取得します:

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="SELECT Lastname,Age FROM Persons ORDER BY Lastname";

if ($result=mysqli_query($con,$sql))
  {
  // Fetch one and one row
  while ($row=mysqli_fetch_row($result))
    {
    printf ("%s (%s)\n",$row[0],$row[1]);
    }
  // Free result set
  mysqli_free_result($result);
}

mysqli_close($con);
?>

定義と用法

mysqli_fetch_row() 関数は、結果セットから1行を取り出し、列挙した配列として返します。


構文

mysqli_fetch_row(result);

パラメータ 説明
result 必須。mysqli_query()、mysqli_store_result()またはmysqli_use_result()が返す結果セットの識別子を指定する

技術内容
返り値: 取得した行に対応する文字列の配列を返します。結果セットにそれ以上行がない場合は NULL を返します
PHP バージョン: 5+

❮ PHP MySQLi リファレンス