<?php $string = "225cm x 70cm"; if (preg_match_all('/\d+(?:\.\d+)?/', $string, $m)) { $inches = implode(" ", array_map(function ($x) { return round(intval($x) * 0.39370 / 0.5) * 0.5; }, $m[0])); echo $inches; }
You have javascript disabled. You will not be able to edit any code.