<?php $px = '1000px'; function get_cm_by_px($px, $dpi = 300, $precision = 2) { $comma = ','; // if US use '.' return number_format(2.54 * (int)$px / $dpi , $precision, $comma,'') ; } var_dump(get_cm_by_px($px));
You have javascript disabled. You will not be able to edit any code.