- explode: documentation ( source)
- array_pop: documentation ( source)
<?php
$str = 'Via Alsazia 3 Scala A Int 1 35127 PADOVA (PD) 049 774266 049 775756';
$parts = explode(' ',$str);
$phone1 = array_pop($parts);
$phone1 = array_pop($parts)." ".$phone1;
$phone2 = array_pop($parts);
$phone2 = array_pop($parts)." ".$phone2;
echo $phone1."\n";
echo $phone2."\n";