0

我一直在尝试找出如何在 php 中使用 snoopy 类。我正在尝试使用 snoopy 从谷歌搜索任何内容。我发现 google 搜索的形式是 name=q 和 action=/search

如何将我的史努比代码设置为正确的代码。

$s=new Snoopy();
$form=array("q"=>"spiderman");
$s->httpmethod = "GET";
$s->submit("http://www.google.com",$form);
echo $s->results;

我得到了 405 结果。

4

1 回答 1

1
<?php
// include snoopy library
require('Snoopy.class.php');
// initialize snoopy object
$snoopy = new Snoopy;
$url = "http://t.qq.com";
// read webpage content
$snoopy->fetch($url);
// save it to $lines_string
$lines_string = $snoopy->results;
//output, you can also save it locally on the server
echo $lines_string;
?>
于 2018-04-28T05:53:08.743 回答