Who is developing PHP database extensions like PDO, mysql, mysqli?

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

Thanks:)

+4
source share
3 answers

They are developed by the PHP development team.

HOWEVER , these database extensions are becoming possible RDBMS providers and a development API. Extensions simply use the RDBMS APIs provided by them.

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

+4
source

They are developed by the PHP development team.

+3
source

They are naturally developed by the PHP community. While different RDBMS manufacturers are concentrating on their products, we PHP developers modem and narrow the gap and come up with these libraries and extensions.

+2
source

Source: https://habr.com/ru/post/1337520/


All Articles