我是php新手,
我想从url获取参数,
我的请求标题是application/json
,
chrome的网络显示请求网址
test/rdp3.php/%5Bobject%20Object%5D
实际上它是
test/rdp3.php/99
PHP代码
<?php
$value = json_decode(file_get_contents('php://input'));
echo $value->sessionName;
?>
如何获取url参数(99)?
我搜索它,但我找不到任何有关它的信息,
请帮忙!非常感谢!
答案 0 :(得分:1)
$_SERVER['PATH_INFO']
将返回/99
。然后,您可以使用trim()
或substr()
删除/
。
'PATH_INFO' Contains any client-provided pathname information trailing the actual script filename but preceding the query string, if available. For instance, if the current script was accessed via the URL http://www.example.com/php/path_info.php/some/stuff?foo=bar, then $_SERVER['PATH_INFO'] would contain /some/stuff.
来自http://php.net/manual/en/reserved.variables.server.php
<强>更新强>
根据你的评论,我对你正在尝试的内容感到有点困惑。如果您返回[object Object],则意味着您尝试将JavaScript对象作为URI的一部分发送。我建议对任何json数据使用HTTP Request主体。如果您打算使用URI唯一标识要发送到服务器的数据(如'99'),那么上面的代码将帮助您解析URI。如果您想知道如何解析HTTP请求有效负载,那么以下代码将有所帮助。
使用命令行中的json的示例POST请求:
curl -i -X POST -d '{"a": 1, "b": "abc"}' http://localhost:8080/test/rdp3.php/99
使用PHP解析json对象:
<?php
$data = json_decode(file_get_contents("php://input"));
var_dump($data); // $data is of type stdClass so it can be treated like an object.
var_dump($data->a); // => 1
var_dump($data->b); // => abcd
答案 1 :(得分:0)
网址test/rdp3.php/99
格式不正确。
您要做的是在网址末尾设置一个键和一个值。因此test/rdp3.php/99
将是test/rdp3.php?key=value
。 ?
表示查询字符串的开头。然后,每个键/值对由&
分隔。
所以你可以看到这样的网址:
test/rdp3.php?key=value&id=99
然后在您的PHP代码中获取key
的值:
$variableName = $_GET['key'];
要获得id
的值,您可以这样做:
$variableName2 = $_GET['id'];