如何从字符串中获取id parametert?

时间:2016-11-15 15:52:55

标签: php regex preg-match

我有字符串:apps/details?id=it.repix.android

如何获得id参数的值?

我尝试了正则表达式:

 $pattern = '/id=(.*)$/';
        preg_match($pattern, $url, $matches, PREG_OFFSET_CAPTURE);

        $id = $matches[1][0];

但它有时不正确

1 个答案:

答案 0 :(得分:-1)

你可以使用全局变量$ _GET; $ id = $ _GET [' id'];

那是