Code for date and time function:
function date_and_time($format,$timestamp) { $date_and_time = date($format,$timestamp); return $date_and_time; }
And then the code to display it:
<?php echo date_and_time("dS FY", strtotime($profile[last_activity_date_and_time])); ?>
The value of $ profile [last_activity_date_and_time] - 2010-01-18 14:34:04
When displayed, displayed until January 18, 2010 - 02:34 pm
But is there a way to change the time zone on which it is displayed?
date timezone php datetime time
Ryan
source share