最新的Web開發教程
 

PHP mysqli_field_seek() Function

<PHP庫MySQLi參考

設置字段光標的第一個字段(column)的結果集,然後得到與現場信息mysqli_fetch_field()並打印字段的名稱,表格和最大長度:

<?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))
  {
  // Get field info for 1st column ("Lastname")
  mysqli_field_seek($result,0);
  $fieldinfo=mysqli_fetch_field($result);

  printf("Name: %s\n",$fieldinfo->name);
  printf("Table: %s\n",$fieldinfo->table);
  printf("max. Len: %d\n",$fieldinfo->max_length);

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

mysqli_close($con);
?>

定義和用法

所述mysqli_field_seek()函數設置字段光標到給定字段偏置。


句法

mysqli_field_seek( result,fieldnr ) ;

參數 描述
result 需要。 指定由返回的結果集標識符mysqli_query() mysqli_store_result()mysqli_use_result()
fieldnr 需要。 指定字段數。 必須在0和字段的數目之間的一個整數-1

技術細節

返回值: TRUE成功。 FALSE失敗
PHP版本: 5+

<PHP庫MySQLi參考