一尘不染

如何从URL字符串获取参数?

php

我有一个HTML表单字段$_POST["url"],其中包含一些URL字符串作为值。示例值是:

https://example.com/test/1234?email=xyz@test.com
https://example.com/test/1234?basic=2&email=xyz2@test.com
https://example.com/test/1234?email=xyz3@test.com
https://example.com/test/1234?email=xyz4@test.com&testin=123
https://example.com/test/the-page-here/1234?someurl=key&email=xyz5@test.com

等等

如何email仅从这些URL /值中获取参数?

请注意,我没有从浏览器地址栏中获取这些字符串。


阅读 332

收藏
2020-05-26

共1个答案

一尘不染

您可以使用parse_url()parse_str()

$parts = parse_url($url);
parse_str($parts['query'], $query);
echo $query['email'];
2020-05-26