php類比post行為代碼總結_PHP教程

來源:互聯網
上載者:User
GET行為比較簡單,POST比較複雜一些。這裡提供兩種方法供選擇:第一:手寫代碼。第二:利用HttpClient php類庫

第一種方法:

PHP代碼
<?PHP
$flag = 0;
//要post的資料
$argv = array(
var1=>abc,
var2=>你好嗎);
//構造要post的字串
foreach ($argv as $key=>$value) {
if ($flag!=0) {
$params .= "&";
$flag = 1;
}
$params.= $key."="; $params.= urlencode($value);
$flag = 1;
}
$length = strlen($params);
//建立socket串連
$fp = fsockopen("127.0.0.1",80,$errno,$errstr,10) or exit($errstr."--->".$errno);
//構造post請求的頭
$header = "POST /mobile/try.php HTTP/1.1";
$header .= "Host:127.0.0.1";
$header .= "Referer:/mobile/sendpost.php";
$header .= "Content-Type: application/x-www-form-urlencoded";
$header .= "Content-Length: ".$length."";
$header .= "Connection: Close";
//添加post的字串
$header .= $params."";
//發送post的資料
fputs($fp,$header);
$inheader = 1;
while (!feof($fp)) {
$line = fgets($fp,1024); //去除請求包的頭只顯示頁面的返回資料
if ($inheader && ($line == "" || $line == "")) {
$inheader = 0;
}
if ($inheader == 0) {
echo $line;
}
}
fclose($fp);
?>

第二種方法是:使用httpclient類

PHP代碼
$pageContents = HttpClient::quickPost(http://example.com/someForm, array(
name => Some Name,
email => email@example.com
));

使用httpclient類庫,可以去官方下載最新的類庫,官方地址為:http://scripts.incutio.com/httpclient/index.php

附加一些點php httpclient的其他幾個用法

靜態方法擷取網頁:

PHP代碼
$pageContents = HttpClient::quickGet(http://example.com/);

Get方法擷取

PHP代碼
$client = new HttpClient(example.com);
if (!$client->get(/)) {
die(An error occurred: .$client->getError());
}
$pageContents = $client->getContent();

帶調試的Get方法擷取

PHP代碼
$client = new HttpClient(example.com);
$client->setDebug(true);
if (!$client->get(/)) {
die(An error occurred: .$client->getError());
}
$pageContents = $client->getContent();

帶自動轉向的Get方法

PHP代碼
$client = new HttpClient(www.amazon.com);
$client->setDebug(true);
if (!$client->get(/)) {
die(An error occurred: .$client->getError());
}
$pageContents = $client->getContent();

檢查頁面是否存在

PHP代碼
$client = new HttpClient(example.com);
$client->setDebug(true);
if (!$client->get(/thispagedoesnotexist)) {
die(An error occurred: .$client->getError());
}
if ($client->getStatus() == 404) {
echo Page does not exist!;
}
$pageContents = $client->getContent();

偽造用戶端

PHP代碼
$client = new HttpClient(exa

http://www.bkjia.com/PHPjc/486434.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/486434.htmlTechArticleGET行為比較簡單,POST比較複雜一些。這裡提供兩種方法供選擇:第一:手寫代碼。第二:利用HttpClient php類庫 第一種方法: PHP代碼 ?PHP...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    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.