Changing time zone with date_default_timezone_set()

December 30, 2009 | Filed Under PHP | Leave a Comment

<?php
$now = time();
date_default_timezone_set('America/New York');
print date('c', $now);
date_default_timezone_set('Europe/Paris');
print date('c', $now);
?>

Comments

Leave a Reply





© PHPInterviewQuestion.com 2009 - 2010

eXTReMe Tracker