php怎麼取得表單數據

爱喝马黛茶的安东尼
發布: 2023-02-23 13:42:01
原創
3795 人瀏覽過

php怎麼取得表單數據

php取得表單資料的幾個方法:

#一、用file_get_contents以get方式取得內容,需要輸入內容為:

<?php
$url=&#39;http://www.domain.com/?para=123&#39;;
$html = file_get_contents($url);
echo $html;
?>
登入後複製

二、用file_get_contents函數,以post方式取得url,需要輸入內容為:

<?php
$url = &#39;http://www.domain.com/test.php?id=123&#39;;
$data = array (&#39;foo&#39; => &#39;bar&#39;);
$data = http_build_query($data);
$opts = array (
&#39;http&#39; => array (
    &#39;method&#39; => &#39;POST&#39;,
   &#39;header&#39;=> "Content-type: application/x-www-form-urlencoded\r\n" .
        "Content-Length: " . strlen($data) . "\r\n",
    &#39;content&#39; => $data
)
);
$ctx = stream_context_create($opts);
$html = @file_get_contents($url,&#39;&#39;,$ctx);
?>
登入後複製

相關推薦:《PHP教學

#三、用fopen開啟url,以get方式取得內容,需要輸入內容為:

<?php
$fp = fopen($url, &#39;r&#39;);
$header = stream_get_meta_data($fp);//获取信息
while(!feof($fp)) {
$result .= fgets($fp, 1024);
}
echo "url header: {$header} <br>":
echo "url body: $result";
fclose($fp);
?>
登入後複製

四、用fopen開啟url,以post方式取得內容,需要輸入內容為:

<?php
$data = array (&#39;foo2&#39; => &#39;bar2&#39;,&#39;foo3&#39;=>&#39;bar3&#39;);
$data = http_build_query($data);
$opts = array (
&#39;http&#39; => array (
&#39;method&#39; => &#39;POST&#39;,
&#39;header&#39;=> "Content-type: application/x-www-form-urlencoded\r\nCookie:cook1=c3;cook2=c4\r\n" .
"Content-Length: " . strlen($data) . "\r\n",
&#39;content&#39; => $data
)
);
$context = stream_context_create($opts);
$html = fopen(&#39;http://www.test.com/zzzz.php?id=i3&id2=i4&#39;,&#39;rb&#39; ,false, $context);
$w=fread($html,1024);
echo $w;
?>
登入後複製

五、用fsockopen函數開啟url,以get方式取得完整的數據,包括header和body,需要輸入內容為:

?php
function get_url ($url,$cookie=false)
{
$url = parse_url($url);
$query = $url[path]."?".$url[query];
echo "Query:".$query;
$fp = fsockopen( $url[host], $url[port]?$url[port]:80 , $errno, $errstr, 30);
if (!$fp) 
{return false;
} else {
$request = "GET $query HTTP/1.1\r\n";
$request .= "Host: $url[host]\r\n";
$request .= "Connection: Close\r\n";
if($cookie) $request.="Cookie:   $cookie\n";
$request.="\r\n";
fwrite($fp,$request);
while(!@feof($fp)) {
$result .= @fgets($fp, 1024);
}
fclose($fp);
return $result;
}
}
//获取url的html部分,去掉header
function GetUrlHTML($url,$cookie=false)
{
$rowdata = get_url($url,$cookie);
if($rowdata)
{
$body= stristr($rowdata,"\r\n\r\n");
$body=substr($body,4,strlen($body));
return $body;
}
   return false;
}
?>
登入後複製

以上是php怎麼取得表單數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!