使用CURL调用接口[*示例*]

<?php
header("content-type:text/html;charset=utf-8");
	/*
		这是 使用CURL调用接口
	*/
    $ch = curl_init();
    $url = 'http://apis.baidu.com/txapi/weixin/wxhot?num=10&rand=1&word=北京&page=1';
    $header = array(
        'apikey:5f5f31ac21007023f35ba58240e2a0f1',
    );
    // 添加apikey到header
    curl_setopt($ch, CURLOPT_HTTPHEADER  , $header);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    // 执行HTTP请求
    curl_setopt($ch , CURLOPT_URL , $url);
    $res = curl_exec($ch);
	$arr = json_decode($res);
    //print_r($arr);die;

	$data = get_object_vars($arr);	//用get_object_vars 把类类型转换成数组
	//print_r($array);die;
	
	echo json_encode($data);
	



                
posted @ 2016-01-24 20:03  汀风说后端  阅读(198)  评论(0编辑  收藏  举报