PHP擴充套件CURL的用法

2021-08-25 03:53:12 字數 1033 閱讀 6483

1、使用curl模擬post表單提交

<?php

//建立curl控制代碼

curl_setopt($ch, curlopt_returntransfer, true); //獲得返回內容,但不需要直接輸出到頁面上

curl_setopt($ch,curlopt_postfields,$data); //post提交的引數寫在乙個陣列裡面

//curl_setopt($ch,curlopt_postfields,"id=1&name=berry"); //post提交引數的另一種寫法

$output = curl_exec($ch); //執行,並接收返回的內容

curl_close($ch);

echo $output;

?>

<?php

print_r($_post);

?>

2、使用curl判斷乙個頁面是否存在

<?php

//建立控制代碼

$ch = curl_init();

//設定引數

curl_setopt($ch, curlopt_url, 「");

curl_setopt($ch, curlopt_returntransfer, true);

$output = curl_exec($ch);

//獲取頁面資訊

PHP擴充套件CURL的用法詳解

curl是利用url語法愛命令列方式下工作的檔案傳輸工具。它支援很多協議。它支援認證功能。php中常用都實現更複雜的傳輸功能。實現的功能 1 實現遠端獲取和採集內容 3 實現模擬登陸 去乙個郵件系統,curl可以模擬cookies 4 實現介面對接 api 資料傳輸等 通過乙個平台傳送簡訊啊,抓取和...

關於PHP擴充套件CURL

url 填寫url data array 請求的引數 curl curl init curl setopt curl,curlopt url,url 填寫url curl setopt curl,curlopt post,1 選擇請求方式為post curl setopt curl,curlopt ...

PHP安裝curl擴充套件

昨天在寫文章的時候,突然出現了乙個很頑皮的bug。一直跳到404頁面?於是我趕緊開啟debug,看看什麼情況!彈出的錯誤是 call to undefined function home controller curl init 原來是 curl 擴充套件沒有裝.來記錄一下安裝過程吧 原始碼包列表 ...