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

What should I do if php does not support pdo?

藏色散人
藏色散人Original
2020-08-01 09:41:122026browse

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

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!

Statement:
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