我有一个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

etc.

如何从这些url /值中只获得电子邮件参数?

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


当前回答

URL中的参数使用$_GET['email']。 使用$_POST['email']发送数据到脚本。 或者两者都使用_$REQUEST。 另外,如前所述,您可以使用parse_url()函数返回URL的所有部分。使用一个叫做“查询”的部分-在那里你可以找到你的电子邮件参数。更多信息:http://php.net/manual/en/function.parse-url.php

其他回答

$uri = $_SERVER["REQUEST_URI"];
$uriArray = explode('/', $uri);
$page_url = $uriArray[1];
$page_url2 = $uriArray[2];
echo $page_url; <- See the value

这对我来说使用PHP非常有用。

URL中的参数使用$_GET['email']。 使用$_POST['email']发送数据到脚本。 或者两者都使用_$REQUEST。 另外,如前所述,您可以使用parse_url()函数返回URL的所有部分。使用一个叫做“查询”的部分-在那里你可以找到你的电子邮件参数。更多信息:http://php.net/manual/en/function.parse-url.php

一个动态函数,解析字符串URL并获取URL中传递的查询参数值:

function getParamFromUrl($url, $paramName){
  parse_str(parse_url($url, PHP_URL_QUERY), $op); // Fetch query parameters from a string and convert to an associative array
  return array_key_exists($paramName, $op) ? $op[$paramName] : "Not Found"; // Check if the key exists in this array
}

调用函数得到一个结果:

echo getParamFromUrl('https://google.co.in?name=james&surname=bond', 'surname'); // "bond" will be output here

之后的所有参数?可以使用$_GET数组访问。所以,

echo $_GET['email'];

将从url中提取电子邮件。

使用parse_url()和parse_str()方法。parse_url()将把URL字符串解析为其各部分的关联数组。由于您只需要URL的单个部分,因此可以使用快捷方式返回包含所需部分的字符串值。接下来,parse_str()将为查询字符串中的每个参数创建变量。我不喜欢破坏当前上下文,因此提供第二个参数将所有变量放入一个关联数组中。

$url = "https://mysite.com/test/1234?email=xyz4@test.com&testin=123";
$query_str = parse_url($url, PHP_URL_QUERY);
parse_str($query_str, $query_params);
print_r($query_params);

//Output: Array ( [email] => xyz4@test.com [testin] => 123 )