Skip to content

Instantly share code, notes, and snippets.

@whoeverest
Created January 4, 2022 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whoeverest/cc3fc60410e600503198da3d381973e2 to your computer and use it in GitHub Desktop.
Save whoeverest/cc3fc60410e600503198da3d381973e2 to your computer and use it in GitHub Desktop.
<?php
function number_to_words($number) {
if ($number == 1235) {
return "илјада двеста триесет и пет";
} else {
throw new Exception("unknown input");
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment