php中运用http调用的GET和POST方法示例

 2025-01-15  阅读 257  评论 8  点赞 135

摘要:使用到的函数是curl_init, curl_setopt, curl_exec,curl_close。 默认是get方法,可以选择是否使用header: $ch = curl_init(); curl_setopt($ch, curlopt_url, "$url"); curl_setopt($ch, curlopt_timeout, 2); curl_setopt($ch, curlopt_header, 1); //如果设为0,则不使用

使用到的函数是curl_init, curl_setopt, curl_exec,curl_close。

php中运用http调用的GET和POST方法示例

默认是get方法,可以选择是否使用header:


$ch = curl_init();
curl_setopt($ch, curlopt_url, "$url");
curl_setopt($ch, curlopt_timeout, 2);
curl_setopt($ch, curlopt_header, 1); //如果设为0,则不使用header
curl_setopt($ch,curlopt_returntransfer,1);
$result = curl_exec($ch);
curl_close($ch);

post方法:


$ch = curl_init();
curl_setopt($ch,curlopt_url,'$url');
curl_setopt($ch,curlopt_post,1);
curl_setopt($ch,curlopt_returntransfer,true);
$vars =sprintf('from=%d&to=%d&subject=%s&body=%s',$from, $to, urlencode($subject), urlencode($body));
curl_setopt($ch,curlopt_postfields,$vars);
$ret = curl_exec($ch);
curl_close($ch);

标签:phpphp教程

评论列表:

  •   xixi2
     发布于 3天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0272秒, 内存占用1.93 MB, 访问数据库29次

冀ICP备19034377号