Home > Backend Development > PHP Problem > What should I do if php does not support pdo?

What should I do if php does not support pdo?

藏色散人
Release: 2023-03-03 16:32:01
Original
2078 people have browsed it

The solution to the problem that php does not support pdo: first find and open the "php.ini" configuration file; then add the content as "extension=php_pdo.dll extension=php_pdo_mysql.dll"; finally save the configuration file.

What should I do if php does not support pdo?

Recommended: "PHP Video Tutorial"

Add these last in php.ini. It can support most databases to enable PDO

extension=php_pdo.dll
extension=php_pdo_mysql.dll
extension=php_pdo_mssql.dll
extension=php_pdo_odbc.dll
extension=php_pdo_oci.dll
Copy after login

The above is the detailed content of What should I do if php does not support pdo?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template