Skip to content

Instantly share code, notes, and snippets.

@fuggla
fuggla / swedish_ordinal.php
Last active November 25, 2016 10:40
return number with swedish ordinal
<?php
/**
* Return swedish ordinal
* eg 1:a or 19:e
* Not needed if this is available: http://www.php.net/manual/en/class.numberformatter.php
**/
function theme_slug_swedish_ordinal($number) {
$last = substr($number, -1);
if ($last <= 2)
return $number . ':a';