I am now writing a php framework. I am wondering whether it will slow down when php require/include or require_once/include_once too many files during a request?
I am now writing a php framework. I am wondering whether it will slow
Share
Unless you use cache libraries, everytime a request comes those files would be included again and again. Surely it would slow things down. Create a framework that only
include-s what needs to beinclude-ed.