使用 PHP 时的 MySQL 与 MySQLi

2022-01-30 00:00:00 php mysql mysqli

MySQL 和 MySQLi 哪个更好?为什么?我应该使用哪个?

Which is better, MySQL or MySQLi? And why? Which should I use?

我的意思是更好,不仅仅是在性能方面,而是在任何其他相关功能方面.

I mean better not just in terms of performance, but any other relevant feature.

推荐答案

如果你看看 MySQL 改进的扩展概述,它应该会告诉您有关两者之间差异的所有信息.

If you have a look at MySQL Improved Extension Overview, it should tell you everything you need to know about the differences between the two.

主要有用的功能是:

  • 面向对象的接口
  • 支持准备好的语句
  • 支持多个语句
  • 支持交易
  • 增强的调试功能
  • 嵌入式服务器支持.

相关文章