I have one big PHP code divided into multiple files, each one is loaded with require (exactly one time for each).
I'm curious if it's faster to have one big .php file with the whole code or different parts in different files (each part is always used).
Let's say one thousand people are refreshing the page, how much does the number of files (the code is divided in) change the speed? Which way is faster and why (what does it depend on)?
Thanks for any advice.