3v4l.org

run code in 300+ PHP versions simultaneously
<?php function ReformatPhoneNumber($n){ if(!preg_match('/\\d+\\-\\d+\\s\\d+/',$n))throw new Exception('Invalid phone number'); return str_replace(array('-',' '), '', $n); } echo ReformatPhoneNumber('23523-235 325');

preferences:
45.88 ms | 402 KiB | 5 Q