On 3/11/07, tedd <tedd@xxxxxxxxxxxx> wrote:
At 10:05 AM +0100 3/11/07, Tijnema ! wrote: > >- You could define $wdays inside the function >function convert_from_weekday ($weekday) { >$wdays = array > (0 => "Sonntag" > ,1 => "Montag" > ,2 => "Dienstag" > ,3 => "Mittwoch" > ,4 => "Donnerstag" > ,5 => "Freitag" > ,6 => "Samstag" > ); > return $wdays[$weekday]; > } >$day = convert_from_weekday(0) // $day = "Sonntag" Tijnema: That's also a shorter version of a simple switch statement. I haven't thought of, or seen, that before -- thanks. tedd
Yeah it is, but i just used moved his $wdays inside the function... but well, there are ofcourse a lot of other options, as date("l") would also return the day of the month :) Tijnema --
------- http://sperling.com http://ancientstones.com http://earthstones.com