1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Curl

Discussion in 'PHP' started by ssimon171078, Mar 20, 2015.

  1. #1
    i need to write php script curl or get_file_content to pinterest that i can download image can you help me ?
    my code :
    <?php
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, $header);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_PROXY, $proxy);
    curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    curl_setopt($ch, CURLOPT_REFERER, $referer);
    curl_setopt($ch, CURLOPT_USERAGENT, $agent);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    
    curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
    $result[‘EXE’] = curl_exec($ch);
    $result[‘INF’] = curl_getinfo($ch);
    $result[‘ERR’] = curl_error($ch);
    
    curl_close($ch);
    
    echo $result;
    ?>
    PHP:
    i tried also to use get_file_content to get image but no result ,i think problem in https
    how can i solve this problem?
     
    ssimon171078, Mar 20, 2015 IP
  2. EricBruggema

    EricBruggema Well-Known Member

    Messages:
    1,740
    Likes Received:
    28
    Best Answers:
    13
    Trophy Points:
    175
    #2
    print_r($result);
    ?
     
    EricBruggema, Mar 24, 2015 IP