使用“Snoopy”通过 GET 提交数据 在 PHP 中

发布于 2024-07-13 12:21:04 字数 288 浏览 7 评论 0原文

我正在尝试通过 PHP 中的 GET 将数据发送到 url。 在收到另一个问题的答案后,我决定使用Snoopy Class。 问题是,我似乎找不到此类中方法的非常好的文档/示例。

我看到了 ->httprequest() 方法,但我没有看到在哪里可以随请求添加值数组。

有比较熟悉的人可以帮忙吗?

I'm trying to send data to a url via GET in PHP. I've decided to go with the Snoopy Class after receiving an answer to another question here. The thing is, I cannot seem to find very good documentation/examples for the methods in this class.

I see the ->httprequest() method, but I don't see where I can add an array of values along with the request.

Anybody a bit more familiar able to lend a hand?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小矜持 2024-07-20 12:21:04
$vars = array( "fname" => "Jonathan", "lname" => "Sampson" );
$snoopy = new Snoopy();

$snoopy->httpmethod = "GET"; // is GET by default
$snoopy->submit( "http://www.example.com", $vars );
print $snoopy->results;
$vars = array( "fname" => "Jonathan", "lname" => "Sampson" );
$snoopy = new Snoopy();

$snoopy->httpmethod = "GET"; // is GET by default
$snoopy->submit( "http://www.example.com", $vars );
print $snoopy->results;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文