How can we convert the time zones using PHP?
Answer / vijaya
By using date_default_timezone_get and
date_default_timezone_set function on PHP 5.1.0
// Discover what 8am in Tokyo relates to on the East Coast
of the US
// Set the default timezone to Tokyo time:
date_default_timezone_set('Asia/Tokyo');
// Now generate the timestamp for that particular timezone,
on Jan 1st, 2000
$stamp = mktime(8, 0, 0, 1, 1, 2000);
// Now set the timezone back to US/Eastern
date_default_timezone_set('US/Eastern');
// Output the date in a standard format (RFC1123), this will
print:
// Fri, 31 Dec 1999 18:00:00 EST
echo '
', date(DATE_RFC1123, $stamp) ,'
';?>
| Is This Answer Correct ? | 13 Yes | 6 No |
Is facebook still written in php?
What is form action php?
How to set cookies in PHP?
Can php run without server?
How do you measure variables?
Give small demo of writting OOP in PHP-mysql.
Can you use both this () and super () in a constructor?
How to assigning a new character in a string using php?
Tell me is it possible to submit a form with a dedicated button?
How to do single and multi line comment in php?
1.Where are the cookies storing ? 2.What is the drawback of using cookies ? 3. If two site is having same cookie name and different values what will be the output if we echo the cookie name from those sites ? How can we solve this issue (How can we specify the domain name)?
How can a cross-site scripting attack be prevented by php?