标签: php
http://www.local.com/?code=xxxxxxxxxxxxxxxxxxxxxxxx
我想在PHP中检索并保存代码参数
答案 0 :(得分:6)
你可以试试这个
$code = $_GET['code'];
现在$code将具有url
$code
答案 1 :(得分:1)
也许这会奏效:
<?php $code = $_GET['code']; ?>
$code现在应该在网址中包含code。
code
有关$_GET的详细信息,请参阅this page。
$_GET