All articles(网络文学目录) All Pictures(图片目录) All Softwares(软件目录)

 
php,post提交http方法_php资料_编程技术

Writer: delv Article type: Programming skills(编程技巧) Time: 2013/12/29 4:39:27 Browse times: 342 Comment times: 0

php,post提交http方法_php资料_编程技术


Head photo

Go homepage
Upload pictures
Write articles

php post提交http方法_php资料_编程技术-你的首页-uuhomepage.com

/*
  利用CURL函数
*/

//POST数据生成
$param = "data1=" . $data1 . "&data2=" . $data2;

//初始化会话
$ch = curl_init();

//设定目标URL
curl_setopt( $ch, CURLOPT_URL, $url );

//设定HEADER(无)
curl_setopt( $ch, CURLOPT_HEADER, 0 );

//POST数据
curl_setopt( $ch, CURLOPT_POSTFIELDS, $param );

//结果返回到变量
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );

//发送请求
$res = curl_exec( $ch );

//会话结束
curl_close( $ch );

//对$res进行分析,处理
?>

注意:试用以上方法,一定要开启php_curl.dll扩展!






There are 0 records,
Comment:
Must be registered users to comment(必须是注册用户才能发表评论)

Disclaimer Privacy Policy About us Site Map
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.