程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 如何正確理解PHP獲取顯示數據庫數據函數

如何正確理解PHP獲取顯示數據庫數據函數

編輯:關於PHP編程

在運用

PHP獲取顯示數據庫數據函數之 mysql_result()

mixed mysql_result(resource result_set, int row [,mixed field])
從result_set 的指定row 中獲取一個field 的數據. 簡單但是效率低.

舉例:

  1. $link1 = @mysql_connect("server1", 
    "webuser", "password")   
  2. or die("Could not connect 
    to mysql server!");  
  3. @mysql_select_db("company") 
    or die("Could not select database!");  
  4. $query = "select id, name 
    from product order by name"
    ;   
  5. $result = mysql_query($query);  
  6. $id = mysql_result($result, 0, "id");  
  7. $name = mysql_result($result, 0, "name");  
  8. mysql_close();  

注意,上述代碼只是輸出結果集中的第一條數據的字段值,如果要輸出所有記錄,需要循環處理.

  1. for ($i = 0; $i <= mysql_num_rows($result); $i++)  
  2. {  
  3. $id = mysql_result($result, 0, "id");  
  4. $name = mysql_result($result, 0, "name");  
  5. echo "Product: $name ($id)";  

注意,如果查詢字段名是別名,則mysql_result中就使用別名.

PHP獲取顯示數據庫數據函數之mysql_fetch_row()

array mysql_fetch_row(resource result_set)
從result_set中獲取整行,把數據放入數組中.
舉例(注意和list 的巧妙配合):
 

  1. $query = "select id, 
    name from product order by name";   
  2. $result = mysql_query($query);  
  3. while(list($id, $name) 
    = mysql_fetch_row($result)) {  
  4. echo "Product: $name ($id)";  

PHP獲取顯示數據庫數據函數之mysql_fetch_array()

array mysql_fetch_array(resource result_set [,int result_type])
mysql_fetch_row()的增強版.
將result_set的每一行獲取為一個關聯數組或/和數值索引數組.
默認獲取兩種數組,result_type可以設置:
MYSQL_ASSOC:返回關聯數組,字段名=>字段值
MYSQL_NUM:返回數值索引數組.
MYSQL_BOTH:獲取兩種數組.因此每個字段可以按索引偏移引用,也可以按字段名引用.

舉例:
 

  1. $query = "select id,
     name from product order by name";  
  2. $result = mysql_query($query);  
  3. while($row = mysql_fetch_array
    ($result, MYSQL_BOTH)) {   
  4. $name = $row['name'];
  5. //或者 $name = $row[1];  
  6. $name = $row['id'];
  7. //或者 $name = $row[0];  
  8. echo "Product: $name ($id)";  

PHP獲取顯示數據庫數據函數之mysql_fetch_assoc()

array mysql_fetch_assoc(resource result_set)
相當於 mysql_fetch_array($result, MYSQL_ASSOC)

PHP獲取顯示數據庫數據函數之mysql_fetch_object()

object mysql_fetch_object(resource result_set)
和mysql_fetch_array()功能一樣,不過返回的不是數組,而是一個對象.
舉例:

 

  1. $query = "select id, name 
    from product order by name";  
  2. $result = mysql_query($query);   
  3. while($row = mysql_fetch_object
    ($result)) {  
  4. $name = $row->name;  
  5. $name = $row->id;  
  6. echo "Product: $name ($id)";  

以上這些函數就是PHP獲取顯示數據庫數據函數的全部總結。


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