欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-11-08 22:45:38
使用到的函数是curl_init, curl_setopt, curl_exec,curl_close。 默认是get方法,可以选择是否使用header:...

使用到的函数是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,则不使用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);