Created
November 10, 2021 23:44
-
-
Save cp6/046c19be62972b100f2998fd1eb03eda to your computer and use it in GitHub Desktop.
PHP feet and inches to centimetres conversion function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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