熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

簡單介紹下PHP5中引入的MySQLI

2022-06-13   來源: PHP編程 

  mysqlidll是PHP對mysql新特性的一個擴展支持在PHP中可以在phpini中加載如下圖
  
  interface ingenious incompatible or incomplete(改擴展仍在開發中因為MYSQL和MYSQL都沒有正式推出尚在開發中新的特性沒有完全實現)
  
  mysqli想實現的目標具體有
  
  更簡單的維護
  
  更好的兼容性
  
  向後兼容
  
  mysql(指PHP中的模塊)發展到現在顯得比較凌亂有必要重新做下整理同時有必要跟上MYSQL(DBMS)的發展步伐加入新的特性的支持以及適應MYSQL(DBMS)以後的版本所以誕生了mysqlidll
  
  mysqlidll的特性
  
  可以和mysqldll一樣的方式使用
  
  支持OO接口簡簡單單調用
  
  支持MYSQL引入的新特性
  
  通過mysqli_init() 等相關函數可以設置高級連接選項
  
  mysqli的使用例子
  
  和以前mysqldll一樣的方法
  
  <?php
  
  /* Connect to a MySQL server */
  
  $link = mysqli_connect(
  
  localhost /* The host to connect to */
  
  user /* The user to connect as */
  
  password /* The password to use */
  
  world); /* The default table to query */
  
  if (!$link) {
  
  printf(Cant connect to MySQL Server Errorcode: %sn mysqli_connect_error());
  
  exit;
  
  }
  
  /* Send a query to the server */
  
  if ($result = mysqli_query($link SELECT Name Population FROM City ORDER BY Population DESC LIMIT )) {
  
  print(Very large cities are:n);
  
  /* Fetch the results of the query */
  
  while( $row = mysqli_fetch_assoc($result) ){
  
  printf(%s (%s)n $row[Name] $row[Population]);
  
  }
  
  /* Destroy the result set and free the memory used for it */
  
  mysqli_free_result($result);
  
  }
  
  /* Close the connection */
  
  mysqli_close($link);
  
  ?>
  
  輸出結果
  
  Very large cities are:
  
  Mumbai (Bombay) ()
  
  Seoul ()
  
  São Paulo ()
  
  Shanghai ()
  
  Jakarta ()
  
  使用內置OO接口方式調用
  
  <?php
  
  /* Connect to a MySQL server */
  
  $mysqli = new mysqli(localhost user password world);
  
  if (mysqli_connect_errno()) {
  
  printf(Cant connect to MySQL Server Errorcode: %sn mysqli_connect_error());
  
  exit;
  
  }
  
  /* Send a query to the server */
  
  if ($result = $mysqli>query(SELECT Name Population FROM City ORDER BY Population DESC LIMIT )) {
  
  print(Very large cities are:n);
  
  /* Fetch the results of the query */
  
  while( $row = $result>fetch_assoc() ){
  
  printf(%s (%s)n $row[Name] $row[Population]);
  
  }
  
  /* Destroy the result set and free the memory used for it */
  
  $result>close();
  
  }
  
  /* Close the connection */
  
  $mysqli>close();
  
  ?>
  
  支持的新特性還有Bound ParametersBound Results等
From:http://tw.wingwit.com/Article/program/PHP/201311/20829.html
  • 上一篇文章:

  • 下一篇文章:
  • Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.