Which one is faster and lighter - mysqli & PDO

后端 未结 3 793
孤独总比滥情好
孤独总比滥情好 2020-12-16 19:34

I am using MySQL with PHP5. I got to know that ancient mysql_* functions are no longer maintained and community has begun the

3条回答
  •  北海茫月
    2020-12-16 20:22

    About Performance

    While both PDO and MySQLi are quite fast, MySQLi performs insignificantly faster in benchmarks - ~2.5% for non-prepared statements, and ~6.5% for prepared ones. The MySQL extension was even faster.

提交回复
热议问题