PHP + curl,HTTP POST示例代码? [英] PHP + curl, HTTP POST sample code?

查看:184
本文介绍了PHP + curl,HTTP POST示例代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以告诉我如何使用HTTP POST进行php curl。

Can anyone show me how to do a php curl with an HTTP POST?

我想发送数据:

username=user1, password=passuser1, gender=1

www.domain.com

我期望curl返回一个响应 result = OK 。有什么例子吗?

I expect the curl to return a response like result=OK. Are there any examples?

推荐答案

你会在这里找到php / curl示例: http://curl.haxx.se/libcurl/php/examples/ ,尤其是 http://curl.haxx.se/libcurl/php/examples/simplepost.html

You'll find php/curl examples here: http://curl.haxx.se/libcurl/php/examples/, especially http://curl.haxx.se/libcurl/php/examples/simplepost.html

<?php
//
// A very simple PHP example that sends a HTTP POST to a remote site
//

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,"http://www.mysite.com/tester.phtml");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
            "postvar1=value1&postvar2=value2&postvar3=value3");

// in real life you should use something like:
// curl_setopt($ch, CURLOPT_POSTFIELDS, 
//          http_build_query(array('postvar1' => 'value1')));

// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$server_output = curl_exec ($ch);

curl_close ($ch);

// further processing ....
if ($server_output == "OK") { ... } else { ... }

?>

这篇关于PHP + curl,HTTP POST示例代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆