How does PHP handle variables in RAM?

canyUnima

New Member
I am curious how PHP handles variables in memory? If I have 100 constants or variables set that hold values related to my application and not on a per user basis, like site name, version number, things like that, which all users have the same value. Will PHP put these 100 variables into ram 100 times if 100 users are hitting the page at the same time? Or does it somehow only store the value in RAM 1 time and all users feed off of that? Sorry if this is not clear, I will try to re-phrase it if it is not clear enough, thanks.
 
Back
Top