Posted by Janwillem Borleffs on 12/21/05 23:00
Jeanine wrote:
> I'am looking for a php script to make a time conversion between
> timezones. Any idea ?
>
You can simply apply putenv() for this with an appropriate timezone setting:
Examples:
putenv ('TZ=Europe/Amsterdam');
echo date("H:i:s");
Or:
putenv ('TZ=Europe/Moscow');
echo date("H:i:s");
Available timezones: http://www.php.net/manual/en/timezones.php
JW
Navigation:
[Reply to this message]
|