Skip to content

Instantly share code, notes, and snippets.

@aqlx86
Created August 27, 2013 12:51
Show Gist options
  • Save aqlx86/6353099 to your computer and use it in GitHub Desktop.
Save aqlx86/6353099 to your computer and use it in GitHub Desktop.
<?php
function test($string)
{
$alpha = range('A', 'Z');
$years = range(2013, 2012 + count($alpha));
$array = array_combine($years, $alpha);
list($year, $week) = str_split($string, 4);
return $array[$year] . ' = '. $week;
}
echo test(201335);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment