PHP mysql_field_seek() 函数

定义和用法

mysql_field_seek() 函数将结果集中的指针设定为指定的字偏移量。

اگر کامیاب ہو تو true بازگردانے کا عمل کریگا، اگر ناکامی ہو تو false بازگردانے کا عمل کریگا。

جملہ

mysql_field_seek(data,field_offset)
پارامتر وصف
data ضروری ہے۔ استعمال کئے جانے والا ڈیٹا پوائنٹر، یہ پوائنٹر mysql_query() The returned results.
field_offset Required. Indicates from which field to start returning. 0 indicates the first field.

Example

<?php
$con = mysql_connect("localhost", "hello", "321");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
$db_selected = mysql_select_db("test_db",$con);
$sql = "SELECT * from Person";
$result = mysql_query($sql,$con);
// Skip to the fourth field
mysql_field_seek($result,3);
print_r(mysql_fetch_field($result));
mysql_close($con);
?>

Output:

stdClass Object
(
[name] => Age
[table] => Person
[def] =>
[max_length] => 2
[not_null] => 0
[primary_key] => 0
[multiple_key] => 0
[unique_key] => 0
[numeric] => 1
[blob] => 0
[type] => int
[unsigned] => 0
[zerofill] => 0
)