If you want the dutch time on your pages and you are hosted on a server in the USA you can easily change it this way:
<?php
setlocale(LC_TIME, 'nl_NL');
$tgl = gmstrftime("%d %B %Y - %H:%M uur",time()+3600);
?>
Then use $tgl to display the right time.
Note the +3600 is a day light savings time correction.
The result: 22 maart 2005 - 16:39 uur
First I used the normal date function and this was the previous result: March 22, 2005 - 04:28 AM
I needed it for a dutch guestbook.
I'm new to PHP and it took me a while to find it out and maybe it's of no use for experienced PHP programmers but I thought people can always ignore my post :)
gmstrftime
(PHP 4, PHP 5)
gmstrftime — Formatează o dată/oră GMT/UTC în conformitate cu setările locale
Descrierea
Se comportă în acelaşi mod ca şi strftime() cu excepţia că ora întoarsă este Greenwich Mean Time (GMT) - Ora Medie Greenwich. Spre exemplu, când se rulează în Eastern Standard Time (GMT -0500), prima linie de mai jos afişează "Dec 31 1998 20:00:00", în timp ce a doua afişează "Jan 01 1999 01:00:00".
Parametri
- format
-
Vezi descrierea în strftime().
- timestamp
-
Parametrul opţional timestamp este un integer şi este un moment de timp Unix şi are valoarea implicită a orei locale, dacă parametrul timestamp nu este indicat. Cu alte cuvinte, valoarea implicită este cea a funcţiei time().
Valorile întroarse
Întoarce un string formatat în conformitate cu string-ul format, utilizând timestamp -ul dat sau ora locală curentă, dacă nu este dat un timestamp. Denumirile lunilor şi zilelor săptămânii şi alte string-uri ce depind de limbă respectă setările locale stabilite cu ajutorul setlocale().
Exemple
Example #1 Exemplu gmstrftime()
<?php
setlocale(LC_TIME, 'en_US');
echo strftime("%b %d %Y %H:%M:%S", mktime(20, 0, 0, 12, 31, 98)) . "\n";
echo gmstrftime("%b %d %Y %H:%M:%S", mktime(20, 0, 0, 12, 31, 98)) . "\n";
?>
gmstrftime
22-Mar-2005 04:50
05-Feb-2005 04:27
gmstrftime() should not be used to generate a RFC 850 date for use in HTTP headers, since its output is affected by setlocale().
Use gmdate instead:
gmdate('D, d M Y H:i:s') . ' GMT';
10-Oct-2004 06:15
HTTP 1.1 (RFC 2068) requires an RFC 1123 date with a four digit year, so the correct format to use for a Last-modified header would look something like this:
<?php
header("Last-modified: " .
gmstrftime("%a, %d %b %Y %T %Z",getlastmod()));
?>
25-Jun-2004 08:27
To get a RFC 850 date (used in HTTP) of the current time:
gmstrftime ("%A %d-%b-%y %T %Z", time ());
This will get for example:
Friday 25-Jun-04 03:30:23 GMT
Please note that times in HTTP-headers _must_ be GMT, so use gmstrftime() instead of strftime().
