mysql_fetch_array 與 mysql_fetch_object函數與用法_PHP教程

來源:互聯網
上載者:User
mysql_fetch_array 與 mysql_fetch_object函數與用法

mysql教程_fetch_array 與 mysql_fetch_object函數與用法

$conn=mysql_connect("127.0.0.1","root","root");
mysql_select_db("ip");
$sql="select * from adminblog ";
$result=mysql_query($sql,$conn);

while($rs=mysql_fetch_array($result))
{
echo $rs->username;
echo $rs->password;
}
//運行代碼提示Notice: Trying to get property of non-object 好了,我們現在修改一下

while($rs=mysql_fetch_array($result))
{
echo $rs['username'];
echo $rs['password'];
}


//輸出結果: adsense 5498bef14143cd98627fb0560cb5ded6
//現在來看一個mysql_fetch_object的執行個體

while($rs=mysql_fetch_object($result))
{
echo $rs['username'];

}

//運行後出來 Fatal error: Cannot use object of type stdClass as array in 說這不是一個數組

while($rs=mysql_fetch_object($result))
{
echo $rs->username;

}

//輸出結果為 adsense
/*
總結:
mysql_fetch_object 把記錄作來一個對象來處理,像我們用類時就要用->訪問
mysql_fetch_array 把記錄儲存到一個資料所以可以用$rs['下標名'] 或$rs[0]數組編號

本站原創教程轉載註明來源php教程er/php.html">http://www.bKjia.c0m/phper/php.html

http://www.bkjia.com/PHPjc/630874.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/630874.htmlTechArticlemysql_fetch_array 與 mysql_fetch_object函數與用法 mysql教程_fetch_array 與 mysql_fetch_object函數與用法 $conn=mysql_connect(127.0.0.1,root,root); mysql_select_db(ip);...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.