php curl模拟post提交数据示例
2015-01-24信息快讯网
本文主要介绍了php curl模拟post提交数据的方法,大家参考使用吧
<? header("Content-type: text/html; charset=utf8"); /* * 提交请求 * @param $header array 需要配置的域名等header设置 array("Host: devzc.com"); * @param $data string 需要提交的数据 'user=xxx&qq=xxx&id=xxx&post=xxx'.... * @param $url string 要提交的url 'http://192.168.1.12/xxx/xxx/api/'; */ function curl_post($header,$data,$url) { $ch = curl_init(); $res= curl_setopt ($ch, CURLOPT_URL,$url); var_dump($res); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch,CURLOPT_HTTPHEADER,$header); $result = curl_exec ($ch); curl_close($ch); if ($result == NULL) { return 0; } return $result; }$url = 'http://127.0.0.1' ;
$header = array("Host:127.0.0.1", "Content-Type:application/x-www-form-urlencoded", 'Referer:http://127.0.0.1/toolindex.xhtml', 'User-Agent: Mozilla/4.0 (compatible; MSIE .0; Windows NT 6.1; Trident/4.0; SLCC2;)');
$data = 'tools_id=1&env=gamma'; echo "argv:$data<br>";
$ret = curl_post($header, $data,$url); $utf8 = iconv('GB2312', 'UTF-8//IGNORE', $ret); echo 'return:<br>'.nl2br($utf8 ).'<br>'; ?>
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
ThinkPHP的URL重写问题
浅析application/x-www-form-urlencoded和multipart/form-data的区别
destoon设置自定义搜索的方法
destoon后台网站设置变成空白的解决方法
destoon常用的安全设置概述
destoon安全设置中需要设置可写权限的目录及文件
destoon之URL Rewrite(伪静态)设置方法详解
PHP扩展CURL的用法详解
ThinkPHP3.1数据CURD操作快速入门
PHP安全的URL字符串base64编码和解码
PHP函数分享之curl方式取得数据、模拟登陆、POST数据
PHP Curl出现403错误的解决办法
php中curl和file_get_content的区别
php中curl、fsocket、file_get_content三个函数的使用比较
PHP抓屏函数实现屏幕快照代码分享
codeigniter使用技巧批量插入数据实例方法分享
php使用filter过滤器验证邮箱 ipv6地址 url验证
php使用strtotime和date函数判断日期是否有效代码分享
thinkphp的CURD和查询方式介绍
phpstrom使用xdebug配置方法
php使用curl发送json格式数据实例
php获取301跳转URL简单实例
wordpress自定义url参数实现路由功能的代码示例
php strnatcmp()函数的用法总结
PHP获取当前url的具体方法全面解析
PHP PDOStatement:bindParam插入数据错误问题分析
php curl模拟post请求小实例
PHP Curl多线程原理实例详解
PHP CURL获取cookies模拟登录的方法
php使用curl模拟登录后采集页面的例子