fork(4) download
  1. <?php
  2. $val = '5\' 10"';
  3. preg_match('/\s*(\d+)\'\s+(\d+)"\s*/', $val, $match);
  4. echo $match[1]*12 + $match[2];
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
70