Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can we convert the time zones using PHP?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does php serialize work?

1107


Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?

1187


How do you call a constructor for a parent class?

951


Explain how is it possible to cast types in php?

1025


What is the use of is_array() and in_array()?

1070


What is apache and php?

967


What is htmlentities function in php?

1001


How do I escape data before storing it in the database?

1036


How to convert strings in hex format?

1081


What is T_PAAMAYIM_NEKUDOTAYIM?

1258


How to retrieve the original query string?

1130


What is difference between strstr() and stristr()?

1166


What are Routines?

2287


Describe the security vulnerability of PHP?

1087


How cookies are trported from browsers to servers?

1064