php - Display Time in PST -


What is the easiest way to display the current time using PHP using PST (West Coast) time?

OK, can be the easiest:

  date_default_timezone_set ( 'America / Los_Angeles'); Echo date ('Y-M-D');  

Take a look to find suitable for your needs.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -