Hi
Does PHP come in different languages? I.e., when I do this:
echo date("D");
Will it always return "Mon" or "Tue" or whatever, or may some servers have been configured to return this in a different language (e.g. "Ma" or "Di" in dutch)?
Thanks!
From a very quick check of the manual section for date():
To format dates in other languages, you should use the setlocale() and strftime() functions.