このURLhttp://site.com/forum.php?id=1&page.php?id=1
を次のように解析する方法
(
[0] => http://site.com/forum.php
[1] => 1
[2] => &page.php
[3] => 1
[4] => &next.php
[5] => 2
)
私がこのように立ち往生している正規表現"/\?(.*?)=/i"
と、次のような出力:
(
[0] => http://site.com/forum.php
[1] => 1&page.php
[2] => 1&next.php
[3] => 2
)