I need to display to user a list of localized day names (like \'Monday\', \'Tuesday\', ...) in a form. I know ho to get day name of any date. But is there a particular and f
$date = '2011/10/14'; $day = date('l', strtotime($date)); echo $day;