当前位置:Gxlcms > PHP教程 > PHPcurl使用代码

PHPcurl使用代码

时间:2021-07-01 10:21:17 帮助过:38人阅读

$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,“http://dwz.cn/create.php”);
curl_setopt($ch,CURLOPT_POST,true);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
$data=array('url'=>'http://www.baidu.com/');
curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
$strRes=curl_exec($ch);
curl_close($ch);
$arrResponse=json_decode($strRes,true);
var_dump($arrResponse);
if($arrResponse['status']!=0)
{
/*错误处理/
echo iconv('UTF-8','GBK',$arrResponse['err_msg']).“ok\n”;
}
/* tinyurl /
echo$arrResponse['tinyurl'].“\n”;

留着吧,

人气教程排行