Skip to content

Instantly share code, notes, and snippets.

@1stevengrant
Created May 21, 2012 11:48
Show Gist options
  • Save 1stevengrant/2761984 to your computer and use it in GitHub Desktop.
Save 1stevengrant/2761984 to your computer and use it in GitHub Desktop.
Function to display year in Roman numerals
<?php // A function to return the Roman Numeral, given an integer
function numberToRoman($num)
{
// Make sure that we only use the integer portion of the value
$n = intval($num);
$result = '';
// Declare a lookup array that we will use to traverse the number:
$lookup = array('M' => 1000, 'CM' => 900, 'D' => 500, 'CD' => 400,
'C' => 100, 'XC' => 90, 'L' => 50, 'XL' => 40,
'X' => 10, 'IX' => 9, 'V' => 5, 'IV' => 4, 'I' => 1);
foreach ($lookup as $roman => $value)
{
// Determine the number of matches
$matches = intval($n / $value);
// Store that many characters
$result .= str_repeat($roman, $matches);
// Substract that from the number
$n = $n % $value;
}
// The Roman numeral should be built, return it
return $result;
}
$year = date("Y");
echo numberToRoman("$year");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment