I am trying to get the local time using php. I wrote two different versions, but they both give the wrong time
date_default_timezone_set(\'UTC\');
$now = new Dat
You can solve this problem by using localtime() function or through date_default_timezone_set() function.
Learn more about the localtime() function reffer:
http://php.net/manual/en/function.localtime.php
or
Learn more about the date_default_timezone_set() function reffer http://www.php.net/manual/en/function.date-default-timezone-set.php
i think this must help you..