Skip to content

Instantly share code, notes, and snippets.

@juanmafla
Created August 22, 2017 19:58
Show Gist options
  • Save juanmafla/8cb70e17e50a5b5b034406f128556953 to your computer and use it in GitHub Desktop.
Save juanmafla/8cb70e17e50a5b5b034406f128556953 to your computer and use it in GitHub Desktop.
Calculate proportions in php
function propor($nwidth, $nheight, $mwidth, $mheight) {
$percentChange = $nwidth / $mwidth;
$newHeight = round( ( $percentChange *$mheight ) );
if($nheight==$newHeight ) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment