<?PHP setlocale ("LC_TIME", "de_DE"); echo strftime("%A, %e %B %Y, in Deutschland"); echo "<br>"; setlocale ("LC_TIME", "fr_CA"); echo strftime("%A, %e %B %Y , in Frankreich"); echo "<br>"; setlocale ("LC_TIME", "fi_FI"); echo strftime("%A, %e %B %Y , in Finnland"); echo "<br>"; setlocale ("LC_TIME", "it_IT"); echo strftime("%A, %e %B %Y , in Italien"); echo "<br>"; setlocale ("LC_TIME", "tr_TR"); echo strftime("%A, %e %B %Y , in Türkei"); echo "<br>"; setlocale ("LC_TIME", "nl_NL"); echo strftime("%A, %e %B %Y , in Niederlande"); echo "<br>"; setlocale ("LC_TIME", "hu_HU"); echo strftime("%A, %e %B %Y , in Ungarn"); echo "<br>"; setlocale ("LC_TIME", "pl_PL"); echo strftime("%A, %e %B %Y , in Polen"); echo "<br>"; ?>
|