1

当我在浏览器上运行以下查询时:

http://127.0.0.1:8096/solr/select/?q=june 17&start=0&rows=8&indent=on&hl=on&hl.fl=Data&wt=json

我得到结果。没问题。请注意,在 6 月和 17 日之间有一个空格

但是,当我在我的 PHP 中收到该查询时,即 $q=June 17 我使用

$url="http://127.0.0.1:8096/solr/select/?q=$q&start=0&rows=8&indent=on&hl=on&hl.fl=Data&wt=json";
$json_O=json_decode(file_get_contents($url),true);

在此之后,我在我的萤火虫上看到以下内容:

<b>Warning</b>:  file_get_contents(http://127.0.0.1:8096/solr/select/?q=june 17&amp;start=0&amp;rows=8&amp;indent=on&amp;hl=on&amp;hl.fl=Data&amp;wt=json) [<a href='function.file-get-contents'>function.file-get-contents</a>]: failed to open stream: HTTP request failed! HTTP/1.1 505 HTTP Version Not Supported

但是请注意,如果我的查询词之间没有空格(我的意思是如果它是一个词),那么一切都是完美的。

为什么当我在浏览器上发出与 file_get_contents() 完全相同的查询时它可以正常工作。任何解决方案将不胜感激。

4

2 回答 2

3

q参数值中有一个空格。可能是这样。尝试urlencode()输入参数。

$url="http://127.0.0.1:8096/solr/select/?q=".urlencode($q)."&start=0&rows=8&indent=on&hl=on&hl.fl=Data&wt=json";

$json_O=json_decode(file_get_contents($url),true);
于 2012-04-28T16:49:19.537 回答
1

这是因为该file_get_contents函数通过 HTTP 向 Web 服务器发送请求,如下所示

GET /solr/select/?q=bla HTTP/1.0
Host: 127.0.0.1
...[more headers here]...

HTTP/1.0请注意,在请求 ( )中指定了 HTTP 版本

现在,如果您的请求字符串中有空格,您可以发送类似

GET /solr/select/?q=bla foo HTTP/1.0
Host: 127.0.0.1
...[more headers here]...

您的服务器似乎解析foo为版本并返回505 HTTP Version Not Supported。如果您对字符串中的空格进行编码(例如,将其替换为%20,则不会发生这种情况)。

于 2012-04-28T16:51:39.910 回答