php基礎九 通過cURL來做小偷程式

2021-08-19 05:09:01 字數 1206 閱讀 8241

<?php

//這個時候就需要使用到——curl。curl中文翻譯過來叫做基於url的函式庫。

//例如:

//1.模擬表單向某個位址傳送資料

//2.在無驗證碼的情況下模擬表單完成使用者登入

//3.上傳某個檔案到遠端伺服器

//4.請求遠端伺服器提供的某些功能

//curl支援dict,file,ftp,ftps,gopher,http,https,imap,imaps,idap,idaps,

//pop3,pop3s,rtmp,rtsp,smtp,smtps,teinet和tftp協議。

//curl同時也支援https認證、http的post、htt和pput、ftp上傳(這個

//也能通過php的ftp擴充套件完成)、http基於表單的上傳、**、cookies和使用者名稱+密碼的認證。

?>

<?php

//1.初始化curl資源

//2.引數設定請求的協議位址

//3.設定是否返回請求結果

//4.設定傳送資料(無傳送資料可不設定)

//5.其他的引數資訊設定(按實際工作需要決定)

//6.執行或執行得到返回結果

//7.關閉curl資源

$ch = curl_init();

curl_setopt($ch, curlopt_url, "");

curl_setopt($ch, curlopt_returntransfer, 1);

curl_setopt($ch, curlopt_header, 0);

$output = curl_exec($ch);

curl_close($ch);

print_r($output);

?>

<?php

$content = get('');

preg_match('/(.*?)<\/div>/mis', $content,$match);

$area = $match[1];

preg_match_all('/(.*?)<\/a><\/h3/>', $area, $find);

var_dump($find);

function get($find)

?>

<?php

function post($url, $data)

?>

Vue基礎 九 通過元件物件進行訪問內容

通過元件物件進行訪問內容 parent children 之前都是寫在同乙個頁面裡面,這次試著將js分離出去,降低 的耦合度 ref被用來給圓度或子元件註冊引用資訊 refs乙個物件,持有註冊過 ref 特性 的所有 dom 元素和元件例項。html 單擊單擊2這是乙個小div data metho...

7 3通過JVM來監控Spring Boot

開啟這個章節,你需要引入相應的包 compile org.jolokia jolokia core 7.3.1 實現 在我們新增了jolokia jmx依賴之後,我們需要開啟我們的應用,現在開啟jconsloe去看一下我們的應用監控資訊。之後jolokia jmx應用新增到類路徑下,spring b...

003 通過表間關聯來查詢

rails不要求在遷移任務中建立外來鍵約束,在遷移任務中建立project id欄位後在project和task模型中加上相應的宣告。project.rb has many tasks task.rb belongs to project projects controller.rb def sho...