//ads:
?>
How to convert the int value to inch in PHP [closed]
PHP Snippet 1:
function cm2inches($cm)
{
$inches = $cm/2.54;
$inches = $inches%12;
return sprintf('%d ins', $inches);
}
echo cm2inches(162);
PHP Snippet 2:
3 ins