PHPで数値の割合を計算したいと思います。例えば:
$percentage = 50; $totalWidth = 350;
この例では、350の50%= 175
どうやってやるの?
$percentage = 50; $totalWidth = 350; $new_width = ($percentage / 100) * $totalWidth;
$percentageを100で除算し、$totalWidthに乗算します。簡単な数学。
$percentage
$totalWidth