When a client request a page which contains some php functions, say functions.php, the server processes the file and presents the page. If a second user request the same page, does, or can the web server share a cached version, or anything of that sort with the second user?
User 1 -> index.php -> includes -> functions.php
Server <- functions.php
User 2 -> index.php -> includes -> functions.php
Server <- cached functions.php
Or, will the server ALWAYS process a new version on request?