tutorial pengembangan web terbaru
 

PHP mysqli_data_seek() Function

<PHP MySQLi Referensi

Contoh

Berusahalah untuk baris nomor 15 dalam hasil-set:

<?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))
  {
  // Seek to row number 15
  mysqli_data_seek($result,14);

  // Fetch row
  $row=mysqli_fetch_row($result);

  printf ("Lastname: %s Age: %s\n", $row[0], $row[1]);

  // Free result set
  mysqli_free_result($result);
}

mysqli_close($con);
?>

Definisi dan Penggunaan

The mysqli_data_seek() fungsi menyesuaikan hasil pointer ke baris sewenang-wenang dalam hasil-set.


Sintaksis

mysqli_data_seek( result,offset ) ;

Parameter Deskripsi
result Wajib. Menentukan hasil set identifier dikembalikan oleh mysqli_query() , mysqli_store_result() atau mysqli_use_result()
offset Wajib. Menentukan bidang offset. Harus antara 0 dan jumlah baris - 1

Rincian teknis

Kembali Nilai: BENAR pada kesuksesan. FALSE pada kegagalan
PHP Versi: 5 +

<PHP MySQLi Referensi