您的位置:首页技术文章
文章详情页

php 如何获取第一个参数?

【字号: 日期:2022-06-02 15:41:28浏览:24作者:猪猪

问题描述

大佬们

URL链接如下 https://www.baidu.cn/?d&b_scene_zt=1&renqun_youhua=375297

如何获取第一个?后面的参数呢

问题解答

回答1:

$test = parse_url("http://localhost/index.php?name=tank&sex=1#top");print_r($test);

试试

回答2:

试一下

$url = "https://www.baidu.cn/?d&b_scene_zt=1&renqun_youhua=375297";echo parse_url($url)['query'];$str = explode("&",parse_url($url)['query']);

echo '<pre>'.print_r($str,true).'';

相关文章: