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
」として出力されています
誰か助けてくれませんか?