What's quicker; including another file or querying a MySQL database in PHP?

后端 未结 12 1711
闹比i
闹比i 2021-01-12 04:29

In PHP, which is quicker; using include(\'somefile.php\') or querying a MySQL database with a simple SELECT query to get the same information?

12条回答
  •  一生所求
    2021-01-12 04:55

    Why not do it both ways and see which is faster? Both solutions are pretty trivial.

提交回复
热议问题