gpt4 book ai didi

php - 从 url 获取第二段

转载 作者:IT王子 更新时间:2023-10-29 01:13:06 27 4
gpt4 key购买 nike

如何在不带斜杠的 URL 中获取第二段?例如,我有一个这样的 URL

http://foobar/first/second

如何获取“first”所在的值?

最佳答案

使用parse_url从 URL 获取路径,然后使用 explode将其拆分为多个部分:

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

echo $uri_segments[0]; // for www.example.com/user/account you will get 'user'

关于php - 从 url 获取第二段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5455531/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com