zoukankan      html  css  js  c++  java
  • PHP与cURL

    CURL PHP API comes with a wide array of options and features. This allows users to fine tune the requests and the way that the responses are handled.

    PHP CURL API带来广阔的选择和特性,帮助用户处理请求和其他信息。

    步骤概览


    初始化CURL->设置选项->执行CURL->关闭CURL

    Initialize

    $ch = curl_init();
    

    Set Options

    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_URL, true);
    

    Execute

    curl_exec($ch);
    

    Close

    curl_close($ch);
    

    与file_get_contents

    Earlier in this chapter it was shown how to access the Yahoo spelling service with
    the file_get_contents function. The following code shows how to do the same with CURL. As you will notice, the code is a bit lengthier than the equivalent
    file_get_contents version. Obviously, this is the cost you have to pay in exchange of the customizability of CURL. However, you will soon realize that the increased number of lines is negligible in comparison to what you can do with CURL.

    与file_get_contents相比,在实现同样功能的前提下,CURL的代码量会更长。这是我们复杂化处理数据需要付出的代价。然而你讲很快发现增加的代码量相对于你的工作而言,根本无足轻重。

    <?php
    /*//yahoo weather web service
    $url='http://api.wooyun.org/domain/cnpc.com';
    $xml = file_get_contents($url);
    $out=json_decode($xml);
    print_r($out);*/
    $url='http://api.wooyun.org/domain/cnpc.com';
    
    $ch=curl_init();
    
    curl_setopt($ch,CURLOPT_URL,$url);
    //能够接受返回值
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    
    $res=json_decode(curl_exec($ch));
    curl_close($ch);
    print_r($res);
    ?>
    

    这是我的个人日记本
  • 相关阅读:
    vue-router路由
    前端路由与后端路由
    getsupportfragmentmanager 没有这个方法
    Glide使用
    Android使用Glide加载Gif.解决Glide加载Gif非常慢问题
    电脑卡,eclipse Android stadio 卡,什么都卡解决方法
    Service IntentService区别 (面试)
    枚举
    Android stadio litepal
    Android 单元测试
  • 原文地址:https://www.cnblogs.com/valentineisme/p/4166663.html
Copyright © 2011-2022 走看看