How can I get the local server\'s timezone without relying on php.ini or other configuration files?
php.ini
I am looking for an output similar to the output of
If you're on *nix, call the system's date using popen:
date
popen("date +%Z");