我想将此 URL 分解为变量。
http://example.com/user.php?u=38456
我想要u=
;之后的值 例如,38456
或36491
或其他一些数值。
当我得到那个值时,我会把它放在这里:
$url = /* that value */;
function gameStats($url)
{
$result = file_get_contents('http://www.popre.net/game.php?u='.$url.'');
$expl = explode('"',$result);
print_r($expl);
}
gameStats($url);
如果我把 URL 值放在那里,它会给我用来显示游戏报告的数组。