i treid to used the regex, and nothing print, here is my code
<?php
$var="text text text call texttext 123-456-7896 or (321)456-7896 text text text 1234447894 (123)458-7894 451.254.1236 dsfdsfdsd 456-879-9874";
//preg_match_all("/(\d{3})-(\d{3})-(\d{4})/", $var, $match);
preg_match_all("/^(\(|){1}[2-9][0-9]{2}(\)|){1}([\.\- ]|)[2-9][0-9]{2}([\.\- ]|)[0-9]{4}$/", $var, $match);
foreach ($match[0] as $u =>$eli) {
echo $match[0][$u]."<br>";
}
?>
thanks