这篇文章主要为大家详细介绍了php curl post 传参简单示例,具有一定的参考价值,可以用来参考一下。
对phpcurl post 传参简单示例感兴趣的小伙伴,下面一起跟随四海网的小编巴闭妹来看看吧!
/**
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
$url = "http://106.ihuyi.cn/webservice/sms.php?method=Submit";端口地址
$post_data = array (
"method" => "Submit",
"account" => "",//用户名
"password" => "",//密码
"mobile" => "",//电话号码
"content" => "您的验证码是:7857。请不要把验证码泄露给其他人。"//内容
);
var_dump($post_data);
function Post($post_data,$url){
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
$return_str = curl_exec($curl);
curl_close($curl);
return $return_str;
}
var_dump(Post($post_data,$url));
本文来自:http://www.q1010.com/173/11077-0.html
注:关于php curl post 传参简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。