如何在PHP中获取URL参数?

时间:2017-05-03 06:34:59

标签: php http url http-method

的http:// {{BASE_URL}} /后/的 857161551776694272

我想在上面的URL中获取post_id(粗体)。参数不包含任何参数名称。 (它的PATCH方法也有json体)

1 个答案:

答案 0 :(得分:0)

您可以使用parse_url获取您的网址片段,例如:

$uri_path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$uri_segments = explode('/', $uri_path);

echo $uri_segments[0];
echo "<br>";
echo $uri_segments[1];