熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

關於php 接口問題(php接口主要也就是運用curl,curl函數)

2022-06-13   來源: PHP編程 
本篇文章是對php中的接口問題(php接口主要也就是運用curlcurl函數)進行了詳細的分析介紹需要的朋友參考下  

  接口問題
php調用接口最主要的就是使用curl抓取信息

復制代碼 代碼如下:

  
$ch = curl_init();
curl_setopt($ch CURLOPT_URL $url); //url地址
curl_setopt($ch CURLOPT_POST true); //是否post請求
curl_setopt($ch CURLOPT_POSTFIELDS $data); //post請求傳遞的數據
curl_setopt($ch CURLOPT_HTTPHEADER $header);//設置header
curl_setopt($ch CURLOPT_RETURNTRANSFER true);//返回獲取的輸出文本流
$response = curl_exec($ch); //獲取返回的數據
curl_close($ch); //關閉


From:http://tw.wingwit.com/Article/program/PHP/201311/20899.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.