我如何使用PHP读取URL(这是浏览器中返回的URL)

时间:2012-06-06 09:53:12

标签: php

http://www.local.com/?code=xxxxxxxxxxxxxxxxxxxxxxxx

我想在PHP中检索并保存代码参数

2 个答案:

答案 0 :(得分:6)

你可以试试这个

$code = $_GET['code'];

现在$code将具有url

中的代码值

答案 1 :(得分:1)

也许这会奏效:

<?php $code = $_GET['code']; ?>

$code现在应该在网址中包含code

有关$_GET的详细信息,请参阅this page