<?php
setlocale(LC_TIME, "C");
echo strftime("%A");
setlocale(LC_TIME, "fi_FI");
echo strftime(" in Finnish is %A,");
setlocale(LC_TIME, "fr_FR");
echo strftime(" in French %A and");
setlocale(LC_TIME, "de_DE");
echo strftime(" in German %A.\n");
?>
Deprecated: Function strftime() is deprecated in /in/eDI7q on line 3
Sunday
Deprecated: Function strftime() is deprecated in /in/eDI7q on line 5
in Finnish is sunnuntai,
Deprecated: Function strftime() is deprecated in /in/eDI7q on line 7
in French dimanche and
Deprecated: Function strftime() is deprecated in /in/eDI7q on line 9
in German Sonntag.