$matches = array(); preg_match('/id=([0-9]+)\?/', $url, $matches); ----------------------------------------- $string = "producturl.php?id=736375493?=â„¢"; preg_match('~id=(\d+)~', $string, $m ); var_dump($m[1]); // $m[1] is your string   |