如何用php获取部分url

时间:2016-10-31 14:03:08

标签: php url get

我想出一种显示用户个人资料的方法。现在,我可以在转到用户的个人资料时将user_id插入到网址中,但我不确定如何从网址获取user_id。

所以在网址的最后我有这个:

配置文件?用户= 41

我只想获得41(请注意每个配置文件会更改此编号),然后将其设置为变量。

我该怎么做?

2 个答案:

答案 0 :(得分:1)

<?php
    echo $_GET['user'];
?>

url的所有参数都存储在$ _GET变量...

答案 1 :(得分:0)

The parameter that are in your URL can be retrieved with the

预定义变量:

<?php
    //$userId = $_GET["pramName"];
    $userId = $_GET["user"];
    // or 
    // using the $_REQUEST variable   
?>