Skip to content

Instantly share code, notes, and snippets.

@cp6
Created November 10, 2021 23:43
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/28e72f8165f422fa835eb9b90b442cc8 to your computer and use it in GitHub Desktop.
Save cp6/28e72f8165f422fa835eb9b90b442cc8 to your computer and use it in GitHub Desktop.
PHP pounds to kilograms conversion function
<?php
function poundsToKg(int $pounds): int
{
return number_format(($pounds * 0.45359237), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment