<?php
$strings = [
'https://site.ru/#top 7 (499) 999-99-99;',
'7 (499) 999-99-99; https://site.ru/#top',
];
foreach($strings as $str)
{
print_r(extract_data($str));
}
function extract_data($str)
{
preg_match('!(https?://[^\s]+)!si', $str, $out);
$url = $out[1] ?? '';
$str = str_replace($url, '', $str);
$phone = trim(preg_replace('![^0-9\(\)\-\ ]+!si', '', $str));
return [
'url' => $url,
'phone' => $phone
];
}
Array
(
[url] => https://site.ru/#top
[phone] => 7 (499) 999-99-99
)
Array
(
[url] => https://site.ru/#top
[phone] => 7 (499) 999-99-99
)