//читаем страницу
$buffer="";
$url='https://codeby.net/index.php?showtopic=34842';
$handle = @fopen($url,'r');
if($handle){
while (!feof ($handle)) {
$buffer .= fgets($handle, 4096);
}
}
@fclose ($handle);
//вырезаю все сотовые телефоны по регулярному выражению
preg_match_all("/\((\d{1}-\d{3})\)(\d{3}-\d{4})/",$buffer,$phone_a);
//Массив $phone_a имеет все совпадения.