Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

who is developing PHP database extensions such as PDO, mysql, mysqli?

Are these extensions provided by the respective RDBMS teams or are they developed by PHP community?

Thanks:)

like image 728
Stann Avatar asked Jan 20 '23 15:01

Stann


2 Answers

They are developed by the PHP development team.

HOWEVER, these database extensions are made possible by the RDBMS vendors and by the native API they develop. The extensions are simply making use of the API RDBMS vendors made available to them.

For example, PDO_mysql, mysql and mysqli all interface with libmysql or mysqlnd, maintained by the MySQL development team.

like image 144
Andrew Moore Avatar answered Jan 30 '23 13:01

Andrew Moore


They are developed by the PHP development team.

like image 35
shamittomar Avatar answered Jan 30 '23 15:01

shamittomar