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

后端 未结 12 1716
闹比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 05:05

    definitely include as long as the file isn't too big and you end up using too much memory in which case a database would be recommended

提交回复
热议问题