Home > php教程 > php手册 > body text

PHP开启PDO和PDO_MySQL扩展的方法

WBOY
Release: 2016-06-13 09:29:35
Original
1249 people have browsed it

PHP开启PDO和PDO_MySQL扩展的方法

   PDO扩展为PHP访问数据库定义了一个轻量级的、一致性的接口,它提供了一个数据访问抽象层,这样,无论使用什么数据库,都可以通过一致的函数执行查询和获取数据。

  在一些PHP管理系统需要开启PDO和PDO_MySQL扩展,方法很简单:

  1、找到php.ini文件

  2、打开后,搜索 extension=php_pdo.dll 和 extension=php_pdo_mysql.dll ,去掉前面“;”的注释。

  最终这两行配置内容如下:

  extension=php_pdo.dll

  extension=php_pdo_mysql.dll

  重新启动apache或者iis后,在phpinfo函数中查看,是否开启。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template