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
Post a Comment