What is the difference between using primarily $ _ENV vs $ SERVER?
I know the reason that $ _ENV is disabled by default and you need to enable it via php.ini. Or maybe $ _ENV serves more for its variables and $ _SERVER for accessing server configuration variables?
By default, $ _ENV contains all the same set of properties as $ _SERVER? If I correctly assumed that $ _ENV serves more for its variables, then why not then use the $ _GLOBAL array?