Jump to content

Readable dates on swedish


Uzm

Recommended Posts

<?php
function en2sw($date)
  {
     $en2sw = array(
"January" => "Januari",
"Sunday" => "Söndag"
     );
     if (!empty($en2sw[$date]))
       return $en2sw[$date];
     else
       return $date;
  }
echo en2sw("January");
?>

Usage is pretty self explanatory.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.