本文實(shí)例講述了PHP使用file_get_contents發(fā)送http請(qǐng)求功能。分享給大家供大家參考,具體如下:
服務(wù)器端模擬 POST/GET 等請(qǐng)求,使用 CURL 很容易辦到(例如前面一篇《php使用CURL模擬GET與POST向微信接口提交及獲取數(shù)據(jù)的方法》),那么如果不使用 CURL 庫(kù),又該怎么辦呢?
$data = array(
'test'=>'bar',
'baz'=>'boom',
'site'=>'www.nimip.com',
'name'=>'nimip.com');
$data = http_build_query($data);
//$postdata = http_build_query($data);
$options = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded',
'content' => $data
'timeout' => 60 // 超時(shí)時(shí)間(單位:s)
)
);
$url = "http://www.testweb.com";
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
echo $result;
其中http://www.testweb.com的代碼為:
$data = $_POST;
print_r( $data );
stream_context_create()
作用:創(chuàng)建并返回一個(gè)文本數(shù)據(jù)流并應(yīng)用各種選項(xiàng),可用于fopen()
,file_get_contents()
等過程的超時(shí)設(shè)置、代理服務(wù)器、請(qǐng)求方式、頭信息設(shè)置的特殊過程。
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php curl用法總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計(jì)算法總結(jié)》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- 解決PHP curl或file_get_contents下載圖片損壞或無法打開的問題
- php中file_get_contents()函數(shù)用法實(shí)例
- PHP使用fopen與file_get_contents讀取文件實(shí)例分享
- PHP中file_get_contents函數(shù)抓取https地址出錯(cuò)的解決方法(兩種方法)
- php使用file_get_contents(‘php://input‘)和$_POST的區(qū)別實(shí)例對(duì)比