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

查看:31
本文介绍了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
//
// A very simple PHP example that sends a HTTP POST to a remote site
//

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,"http://www.example.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天全站免登陆