I want to get Monday, Tuesday, Wednesday... using php function.
I have only numeric values for those like 1,2,3..7 where
1 = Monday 2 = Tuesday ... 7 = Sunday.<
My personal favorite...
$day_start = date( "d", strtotime( "next Sunday" ) ); // get next Sunday for ( $x = 0; $x < 7; $x++ ) $week_days[] = date( "l", mktime( 0, 0, 0, date( "m" ), $day_start + $x, date( "y" ) ) ); // create weekdays array.