gpt4 book ai didi

php - 使用 PHP 从(搜索引擎)引用网址获取关键字

转载 作者:可可西里 更新时间:2023-11-01 12:45:47 25 4
gpt4 key购买 nike

我正在尝试从引荐网址获取搜索关键字。目前,我正在为 Google 网址使用以下代码。但有时它不起作用...

$query_get = "(q|p)";
$referrer = "http://www.google.com/search?hl=en&q=learn+php+2&client=firefox";
preg_match('/[?&]'.$query_get.'=(.*?)[&]/',$referrer,$search_keyword);

是否有另一种/干净/有效的方法来做到这一点?

谢谢,普拉萨德

最佳答案

如果您使用的是 PHP5,请查看 http://php.net/parse_urlhttp://php.net/parse_str

例子:

// The referrer$referrer = 'http://www.google.com/search?hl=en&q=learn+php+2&client=firefox';// Parse the URL into an array$parsed = parse_url( $referrer, PHP_URL_QUERY );// Parse the query string into an arrayparse_str( $parsed, $query );// Output the resultecho $query['q'];

关于php - 使用 PHP 从(搜索引擎)引用网址获取关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1805296/

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