php內建Mysql函式(2)

2021-06-26 21:12:52 字數 932 閱讀 2992

1、mysql_fetch_row()-獲取和顯示函式

每執行一次,都從資源也就是結果集中一次取出一條資料,以陣列形式返回出來,當前一次已經取到 最後一條資料的時候返回空結果

只產生一維索引陣列,每個下標與資料庫裡的字段相對應

可用while($row=mysql_fetch_row($query)){}輸出所有結果;

2、mysql_fetch_array()-獲取和顯示函式(速度較慢)

與mysql_fetch_row()執行過程一致

*預設狀態下取一條資料產生乙個索引陣列和乙個關聯陣列

*第二個引數:

*mysql_assoc-使用時只產生乙個關聯陣列

*mysql_num-只產生數字陣列(索引陣列)

*mysql_both-預設

/**************************關聯陣列***************************/

mysql_fetch_array($query,mysql_assoc);

/**************************索引陣列**************************/

mysql_fetch_row($query);

mysql_fetch_array($query,mysql_num);

/*********************關聯陣列+索引陣列********************/

mysql_fetch_array($query);

mysql_fetch_array($query,mysql_ both);

3、mysql_fetch_assoc()-獲取和顯示函式

與mysql_fetch_array($query,mysql_assoc)一樣

4、mysql_fetch_object()-獲取和顯示函式

結果為乙個物件

PHP內建的MySQL函式總結

一.php連線資料庫 php連線資料庫有三種方式 mysqli面向過程方式 mysqli物件導向方式 pdo方式 php data objects mysqli connect servername username password 第乙個引數是伺服器的名稱,若使用本地伺服器則可以寫為localh...

mysql 檢視內建函式 mysql內建函式

一 字串函式 1.concat s1,s2.sn 把傳入的引數連線成乙個字串 2.insert str,x,y,str 從str的x位置開始,替換y長度的字串為str,select insert abcdefg 2,3,hello 3.lower str upper str 將字串轉換為大寫,小寫 ...

PHP內建函式

獲取時間戳 時間戳是指自1970 01 01 00 00 00到現在這一瞬間的秒數。microtime true 常用於測試程式執行時間 start microtime true for i 1 i 1000 i end microtime true echo end start 時間戳格式化 ti...