0

如何将查询字符串名称放在php中?

$file_get_html('http://localhost/search/?q=');

当访问 localhost/ 时?name=example,代码如下所示

$file_get_html('http://localhost/search/?q=example');

我不知道如何放入$_GET['url']php :(

4

3 回答 3

1

这个问题不是很清楚,但我怀疑这是答案:

file_get_html('http://localhost/search/?q=' . urlencode($_GET['url']));
于 2013-06-20T00:35:30.953 回答
0
$url = urlencode($_GET['url']);
$contents = file_get_contents("http://localhost/search/?q={$url}");

var_dump($contents);
于 2013-06-20T02:32:51.393 回答
0

?q=example 将允许您使用类似 $example = $_GET['q'] 的内容,并且 $example 应该等于查询字符串中 q 的值。

如果您有一个如下所示的查询字符串:

?q=example&url=myurl.com

您可以像这样访问 q 和 url 参数:

$q = $_GET['q']; // which will equal 'example'
$url = $_GET['url']; // which will equal 'myurl.com'

如果那是你想要做的。

于 2013-06-20T00:35:33.873 回答