============================================================= $pattern = '/b(?:d{1,3}.){3}d{1,3}b/'; preg_match_all($pattern, $f_r[$t], $matches); print_r($matches[0]); $ip = implode(', ', $matches[0]); echo "ip::".$ip."rn"; =============================================================
|