• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

简单介绍下 PHP5 中引入的 MYSQLI

发布: 2007-6-21 15:32 | 作者:   | 来源:   | 查看: 21次 | 进入软件测试论坛讨论

领测软件测试网

   

在新下载的PHP5中你会发现多了一个mysqli.dll,它是干什么用的呢?我简单介绍下:

mysqli.dll是PHP对mysql新特性的一个扩展支持。在PHP5中可以在php.ini中加载,如下图:

简单介绍下 PHP5 中引入的 MYSQLI

, interface, ingenious, incompatible or incomplete(改扩展仍在开发中,因为MYSQL4。1和MYSQL5都没有正式推出尚在开发中,新的特性没有完全实现)

mysqli想实现的目标具体有:

-更简单的维护

-更好的兼容性

-向后兼容

mysql(指PHP中的模块)发展到现在显得比较凌乱,有必要重新做下整理。同时,有必要跟上MYSQL(DBMS)的发展步伐,加入新的特性的支持,以及适应MYSQL(DBMS)以后的版本。所以诞生了mysqli.dll

mysqli.dll的特性:

-可以和mysql.dll一样的方式使用

-支持OO接口,简简单单调用

-支持MYSQL4。1引入的新特性

-通过mysqli_init() 等相关函数,可以设置高级连接选项

mysqli的使用例子:

1.和以前mysql.dll一样的方法:

<?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) {

rintf("Can't 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 5')) {

rint("Very large cities are:n");

/* Fetch the results of the query */

while( $row = mysqli_fetch_assoc($result) ){

rintf("%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) (10500000)

Seoul (9981619)

S&atilde;o Paulo (9968485)

Shanghai (9696300)

Jakarta (9604900)



2.使用内置OO接口方式调用:

<?php

/* Connect to a MySQL server */

$mysqli = new mysqli('localhost', 'user', 'password', 'world');

if (mysqli_connect_errno()) {

rintf("Can't 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 5')) {

rint("Very large cities are:n");

/* Fetch the results of the query */

while( $row = $result->fetch_assoc() ){

rintf("%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 Parameters,Bound Results等。

有兴趣的可以直接去参看原英文:

http://www.zend.com/php5/articles/php5-mysqli.php#fn3



文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网