谁在开发 PHP 数据库扩展,例如 PDO、mysql、mysqli?
这些扩展是由各自的 RDBMS 团队提供的还是由 PHP 社区开发的?
谢谢:)
Are these extensions provided by the respective RDBMS teams or are they developed by PHP community?
Thanks:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它们是由 PHP 开发团队开发的。
但是,这些数据库扩展是由 RDBMS 供应商及其开发的本机 API 实现的。这些扩展只是利用 RDBMS 供应商提供的 API。
例如,
PDO_mysql
、mysql
和mysqli
都与libmysql
或mysqlnd
,由MySQL开发团队维护。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
andmysqli
all interface withlibmysql
ormysqlnd
, maintained by the MySQL development team.它们是由 PHP 开发团队开发的。
They are developed by the PHP development team.
它们自然是由 PHP 社区开发的。虽然不同的 RDBMS 供应商专注于自己的产品,但我们 PHP 开发人员弥补并缩小了差距,并提出了这些库和扩展。
They are developed by the PHP community naturally. While different RDBMS vendors concentrate on their own products, we, the php developers bridge and narrow the gap and come up with those libraries and extensions.