程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> mysql如何跳到指定記錄 mysql_field_seek教程

mysql如何跳到指定記錄 mysql_field_seek教程

編輯:關於PHP編程

mysql_field_seek的作用就是在mysql_query返回的記錄集中,調到我們指定的記錄上,如果有就返回當前記錄,沒有就是false;

mysql_field_seek語法:
mysql_field_seek(data,field_offset)
參數:
data:必須 指的是mysql_query正確返回的數據集.
field_offset:指定位置.不寫代碼從0開始
看個mysql_feild_seek實例.
<?
$sql = "SELECT * from Person";
 
$result = mysql_query($sql,$con);
 
mysql_field_seek($result,3);
 
print_r(mysql_fetch_field($result));
 
mysql_close($con);
 
?>
 
輸出結果.
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
)
 
 
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved