PHP中mysql_fetch_row 和 mysql_fetch_array()的區別與使用

來源:互聯網
上載者:User

標籤:

mysql_fetch_row() 從和指定的結果標識關聯的結果集中取得一行資料並作為數組返回。每個結果的列儲存在一個數組的單元中,位移量從 0 開始。

依次調用 mysql_fetch_row() 將返回結果集中的下一行,如果沒有更多行則返回 FALSE

 1 <?php 2 $result = mysql_query("SELECT id,email FROM people WHERE id = ‘42‘"); 3 if (!$result) { 4     echo ‘Could not run query: ‘ . mysql_error(); 5     exit; 6 } 7 $row = mysql_fetch_row($result); 8  9 echo $row[0]; // 4210 echo $row[1]; // the email value11 ?>

mysql_fetch_array() 是 mysql_fetch_row() 的擴充版本。除了將資料以數字索引方式儲存在數組中之外,還可以將資料作為關聯索引儲存,用欄位名作為鍵名。 

mysql_fetch_array() 中可選的第二個參數 result_type 是一個常量,可以接受以下值:MYSQL_ASSOC,MYSQL_NUM 和 MYSQL_BOTH。本特性是 PHP 3.0.7 起新加的。本參數的預設值是 MYSQL_BOTH。

如果用了 MYSQL_BOTH,將得到一個同時包含關聯和數字索引的數組。用 MYSQL_ASSOC 只得到關聯索引(如同 mysql_fetch_assoc() 那樣),用 MYSQL_NUM 只得到數字索引(如同 mysql_fetch_row() 那樣)。 

<?php    mysql_connect("localhost", "mysql_user", "mysql_password") or        die("Could not connect: " . mysql_error());    mysql_select_db("mydb");    $result = mysql_query("SELECT id, name FROM mytable");    while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {        printf ("ID: %s  Name: %s", $row["id"], $row["name"]);    }    mysql_free_result($result);?> 

  

 

PHP中mysql_fetch_row 和 mysql_fetch_array()的區別與使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.