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 |
Explain Booleans in PHP?
Is there any way to call a JAVASCRIPT function in PHP in AJAX
What is htaccess? Why do we use this and where?
write the function to fetch a image from mysql databases (datatype blob).
How do i explode this string '||25||34||73||94||116||128' i need to have a array like this array ( 0 => '25', 1 => '34', 2 => '73', 3 => '94', 4 => '116', 5 => '128' ) explode("||", $array); didnt work for me i get this array array ( 0 => '', 1 => '25', 2 => '34', 3 => '73', 4 => '94', 5 => '116', 6 => '128', )
Write a program to get lcm of two numbers using php?
i have saved the password in encrypted format in database. now i want how to retrive the password in decrypted format.
What should we do to be able to export data into an excel file?
How to download and install php for windows?
What is xss in php?
Write syntax to open a file in php?
Is uploaded file php?