php使用fsockopen函數(shù)發(fā)送post,get請求獲取網(wǎng)頁內(nèi)容的方法
本文實例講述了php使用fsockopen函數(shù)發(fā)送post,get請求獲取網(wǎng)頁內(nèi)容的方法。分享給大家供大家參考。
具體實現(xiàn)代碼如下:
$post =1;
$url = parse_url($url);
$host ='//www.dhdzp.com';
$path ='/';
$query ='?action=phpfensi.com';
$port =80;
if($post) {
? $out = "post $path http/1.0 ";
? $out .= "accept: */* ";
? //$out .= "referer: $boardurl ";
? $out .= "accept-language: zh-cn ";
? $out .= "content-type: application/x-www-form-urlencoded ";
? $out .= "user-agent: $_server[http_user_agent] ";
? $out .= "host: $host ";
? $out .= 'content-length: '.strlen($post)." ";
? $out .= "connection: close ";
? $out .= "cache-control: no-cache ";
? $out .= "cookie: $cookie ";
? $out .= $post;
?} else {
? $out = "get $path http/1.0 ";
? $out .= "accept: */* ";
? //$out .= "referer: $boardurl ";
? $out .= "accept-language: zh-cn ";
? $out .= "user-agent: $_server[http_user_agent] ";
? $out .= "host: $host ";
? $out .= "connection: close ";
? $out .= "cookie: $cookie ";
?}
?$fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
?if(!$fp)?
?{
? return '';//note $errstr : $errno?
?} else {
? return '成功訪問';
?}fsockopen語法:
啟動一個套接字連接到指定的主機的資源,php支持在互聯(lián)網(wǎng)領(lǐng)域的目標和unix在所支持的套接字傳輸列表說明,所支持的傳輸列表也可以檢索使用stream_get_transports().
該插座預設(shè)會被啟用,阻塞模式,你可以切換到非阻塞模式使用stream_set_blocking(),如果上面實例看不懂,就來看個簡的吧,代碼如下:
$fp = fsockopen("www.dhdzp.com", 80, $errno, $errstr, 30);
?if (!$fp) {
? echo "$errstr ($errno) ";
?} else {
? $out = "get / http/1.1 ";
? $out .= "host: www.dhdzp.com";
? $out .= "connection: close ";
? fwrite($fp, $out);
? while (!feof($fp)) {
?? echo fgets($fp, 128);
? }
? fclose($fp);
?}希望本文所述對大家的PHP程序設(shè)計有所幫助。
相關(guān)文章
php循環(huán)語句 for()與foreach()用法區(qū)別介紹
下面我用兩個實例來介紹一下關(guān)于在php中foreach與for語句用法區(qū)別介紹,有需要的朋友可參考一下2012-09-09
php include,include_once,require,require_once
其實PHP包含文件的這四個函數(shù),很多人還是沒完全明白的,雖然用的時候多,但是具體某些地方該怎么用,用那一個,我就獻丑一把.2008-09-09
Linux Apache PHP Oracle 安裝配置(具體操作步驟)
本篇文章是對在Linux下安裝Apache+PHP連接Oracle的具體操作步驟進行了詳細的分析介紹,需要的朋友參考下2013-06-06
php安全之直接用$獲取值而不$_GET 字符轉(zhuǎn)義
php安全之直接用$獲取值而不$_GET 字符轉(zhuǎn)義,需要的朋友可以參考下2012-06-06

