我想使用 php preg_match 从 url 中提取 id。
例如:$string = 'http://www.mysite.com/profile.php?id=1111';
我需要输出为'1111'
使用 preg_match。
我试过这个:
if(preg_match('/(?:https?):\/\/www\.mysite\.com\/profile\.php\?id\=[0-9]/', $string, $match) > 0){
$id = $match[1];
}
但是我得到的输出是' profile.php
'
有人能帮助我吗?