Skip to content

Instantly share code, notes, and snippets.

@uppfinnarjohnny
Created July 25, 2010 14:56
Show Gist options
  • Save uppfinnarjohnny/489611 to your computer and use it in GitHub Desktop.
Save uppfinnarjohnny/489611 to your computer and use it in GitHub Desktop.
<?php
function swedish_date($date = NULL) {
if(is_null($date))
$date = time();
elseif( ! is_numeric($date))
$date = strtotime($date);
set_locale(LC_TIME, 'sv_SV');
return strftime('%A den %e %B %Y' , $date);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment