Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在字符串中有以下 URL:
$url = 'http://local/aspx/abdl.aspx?W=192796142&ID=Mini+Buggy+1';
我想解析“W”参数。
在这个例子中,我想返回:192796142
使用parse_url和parse_str。
parse_url
parse_str
$url = 'http://local/aspx/abdl.aspx?W=192796142&ID=Mini+Buggy+1'; parse_str(parse_url($url, PHP_URL_QUERY), $params); echo $params['W']; //192796142
使用 PHPparse_url函数。
http://php.net/manual/en/function.parse-url.php
当您正在寻找一个简单的单线时,您可以使用parse_str和parse_url:
parse_str(parse_url($url, PHP_URL_QUERY), $out); echo $out['W'];