PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $numbers = [ '0488 499 001', '+61408 998 998', '415 093213' ]; function cleanNum($num) { // remove non-digits $num = preg_replace('/\D/', '', $num); return '61' . substr($num, -9); } $res = array_map('cleanNum', $numbers); print_r($res);
Show:  
Copy Clear