获取格式化后的数据

    1. <?php
    2. $assoc = true; // 为true时返回数组,为false时返回对象
    3. $http = Yurun\Util\HttpRequest::newSession();
    4. var_dump('jsonp:', $http->get('https://graph.qq.com/oauth2.0/token')->jsonp($assoc));
    5. $http = Yurun\Util\HttpRequest::newSession();
    6. var_dump('json:', $http->get('https://api.weibo.com/oauth2/access_token')->json($assoc));
    7. $http = Yurun\Util\HttpRequest::newSession();
    8. var_dump('xml:', $http->get('http://wthrcdn.etouch.cn/WeatherApi?citykey=')->xml($assoc));