Skip to content

Instantly share code, notes, and snippets.

@cp6
Created November 10, 2021 23:44
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 cp6/046c19be62972b100f2998fd1eb03eda to your computer and use it in GitHub Desktop.
Save cp6/046c19be62972b100f2998fd1eb03eda to your computer and use it in GitHub Desktop.
PHP feet and inches to centimetres conversion function
<?php
function feetInchesToCm(int $feet, int $inches): int
{
return number_format((($feet * 12) + $inches) * 2.54, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment