1.curl介紹
curl 是乙個利用url語法規定來傳輸檔案和資料的工具,支援很多協議,如http、ftp、telnet等。最爽的是,php也支援 curl 庫。本文將介紹 curl 的一些高階特性,以及在php中如何運用它。
2.基本結構
在學習更為複雜的功能之前,先來看一下在php中建立curl請求的基本步驟:
(1)初始化
curl_init()
(2)設定變數
curl_setopt() 。最為重要,一切玄妙均在此。有一長串curl引數可供設定,它們能指定url請求的各個細節。要一次性全部看完並理解可能比較困難,所以今天我們只試一下那些更常用也更有用的選項。
(3)執行並獲取結果
curl_exec()
(4)釋放curl控制代碼
curl_close()
3.curl實現get和post
3.1 get方式實現
//初始化
$ch = curl_init();
//設定選項,包括url
curl_setopt($ch, curlopt_url, "");
curl_setopt($ch, curlopt_returntransfer, 1);
curl_setopt($ch, curlopt_header, 0);
//執行並獲取html文件內容
$output = curl_exec($ch);
//釋放curl控制代碼
curl_close($ch);
//列印獲得的資料
print_r($output);
3.2 post方式實現
// post資料
curl_setopt($ch, curlopt_post, 1);
// post的變數
curl_setopt($ch, curlopt_postfields, $post_data);
$output = curl_exec($ch);
curl_close($ch);
//列印獲得的資料
print_r($output);
以上方式獲取到的資料是json格式的,使用json_decode函式解釋成陣列。
$output_array = json_decode($output,true);
如果使用json_decode($output)解析的話,將會得到object型別的資料。
下面附加1個利用curl編寫的函式及其呼叫方法:
<?php
/**
* curl版本
* 使用方法:
* request_by_curl('', $post_string);
*/
function request_by_curl($remote_server, $post_string)
?>
**:
利用php傳送郵件
啥都不說了,直接上 郵件傳送程式 匯入smtp郵件傳送類 require mail.php smtp郵件伺服器 smtpserver smtp.163.com smtp伺服器端口 smtpserverport 25 smtp使用者郵箱位址 smtpusermail 收件人郵箱位址 smtpemail...
WEB安全 PHP漏洞利用 PHP拼接
a phpinfo a 相當於phpinfo a呼叫函式,傳參 type file type a imagecreatefrom 假如pic的型別為png,則拼接後的函式名為imagecreatefrompng a pic 動態呼叫函式 可以在檔案上傳的場景當中應用,根據檔案型別呼叫相應的函式,也可...
利用PHP生成靜態頁面
autohtml.php class shtml 描述 繫結資料來源,引數為一陣列。datasource arr 描述 設定檔案存放路徑。dir dir function setfilename filename function getmod function setmod mod functio...