Curl-php how to disable remote call address output

Source: Internet
Author: User
I used the curl method in the interface to call a remote address, which contains content output, which affects the output format of my interface, how Can I disable remote address output. in addition, shouldn't the remote link output be the returned value after curl_exec is executed... I used the curl method in the interface to call a remote address, which contains content output, which affects the output format of my interface, how Can I disable remote address output. in addition, shouldn't the remote link output be the returned value after curl_exec is executed? why is it printed directly in the browser?

Reply content:

I used the curl method in the interface to call a remote address, which contains content output, which affects the output format of my interface, how Can I disable remote address output. in addition, shouldn't the remote link output be the returned value after curl_exec is executed? why is it printed directly in the browser?

$ Url = 'http: // postzz173.com '; $ ch = curl_init (); curl_setopt ($ ch, CURLOPT_URL, $ url); curl_setopt ($ ch, CURLOPT_SSL_VERIFYPEER, false ); curl_setopt ($ ch, CURLOPT_SSL_VERIFYHOST, false); // return instead of directly outputting curl_setopt ($ ch, CURLOPT_RETURNTRANSFER, true ); // The retrieved content is saved in the re variable $ re = curl_exec ($ ch); // The echo ($ re) command is executed to output the data );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.