Home  >  Article  >  Backend Development  >  What is PDO and how to install it on Unix and Windows systems?

What is PDO and how to install it on Unix and Windows systems?

藏色散人
藏色散人Original
2019-03-15 10:59:223683browse

What is PDO? PDO is the abbreviation of PHP Data Object, which is a set of PHP extensions that provide core PDO classes and database-specific drivers. Provides a lightweight, vendor-neutral data access abstraction layer. Focus on data access abstractions, not database abstractions. PDO requires new object-oriented features to be added to the core of PHP 5, so it will not run in earlier versions of PHP.

What is PDO and how to install it on Unix and Windows systems?

Installing PDO

PDO is divided into two parts:

-The core that provides the interface.

- Drivers for specific access.

Installing PDO on Unix systems:

Since PHP 5.1.0, PDO (core) and PDO_SQLITE driver (SQLITE driver) are enabled by default. To access other databases, the PDO driver must be enabled.

To install PDO as a shared module, you need to update php.ini so that the PDO extension is automatically loaded when PHP is running. You will also need to enable other database-specific drivers, and they must be listed after the pdo.so line because PDO must be initialized before database-specific extensions can be loaded. If you build PDO and database-specific extensions statically, you can skip this step:

extension = pdo.so

Install PDO on Windows systems:

PDO and all major drivers The programs all come with PHP as a shared extension, you only need to edit the PHP .ini file to activate:

extension = php_pdo.dll

For PHP 5.3 and above, this step is unnecessary because PDO no longer requires the DLL.

Next, select the other database-specific DLL files and either load them at runtime using dl() or enable them in php.ini below php_pdo.dll.

To get the effect of the new configuration in the PHP.ini file, you need to restart PHP.

Related recommendations: "PHP Tutorial"

The above is the detailed content of What is PDO and how to install it on Unix and Windows systems?. 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