這篇文章主要介紹PHP實作curl或file_get_contents 取得需要授權頁面的方法,有興趣的朋友參考下,希望對大家有幫助。
例如要取得的頁面:http://localhost/server.php
<?php $content = isset($_POST['content'])? $_POST['content'] : ''; header('content-type:application/json'); echo json_encode(array('content'=>$content)); ?>
使用curl取得server.php頁面
<?php $url = 'http://localhost/server.php'; $param = array('content'=>'fdipzone blog'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $ret = curl_exec($ch); $retinfo = curl_getinfo($ch); curl_close($ch); if($retinfo['http_code']==200){ $data = json_decode($ret, true); print_r($data); }else{ echo 'POST Fail'; } ?>
#如果服務沒有安裝php curl擴展,使用file_get_contents也可以實作發起請求,取得頁面回傳資料
<?php $url = 'http://localhost/server.php'; $param = array('content'=>'fdipzone blog'); $opt = array( 'http' => array( 'method' => 'POST', 'header' => 'content-type:application/x-www-form-urlencoded', 'content' => http_build_query($param) ) ); $context = stream_context_create($opt); $ret = file_get_contents($url, false, $context); if($ret){ $data = json_decode($ret, true); print_r($data); }else{ echo 'POST Fail'; } ?>
使用curl 和file_get_contents 傳回的結果都是一樣的。
Array ( [content] => fdipzone blog )
對於需要授權的頁面,例如使用了htpasswd .htaccess設定目錄存取權的頁面,直接用上面的方法會回傳401 Unauthorized錯誤。
這次的範例先不使用htpasswd .htaccess來控制存取權限,而使用 $_SERVER['PHP_AUTH_USER']## 和 $ _SERVER['PHP_AUTH_PW']這兩個伺服器參數。
http://localhost/server.php 修改為:
<?php if(!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="localhost"'); header("HTTP/1.0 401 Unauthorized"); exit; }else{ if (($_SERVER['PHP_AUTH_USER']!= "fdipzone" || $_SERVER['PHP_AUTH_PW']!="654321")) { header('WWW-Authenticate: Basic realm="localhost"'); header("HTTP/1.0 401 Unauthorized"); exit; } } $content = isset($_POST['content'])? $_POST['content'] : ''; header('content-type:application/json'); echo json_encode(array('content'=>$content)); ?>設定帳號:fdipzone 密碼:654321curl中,有一個參數是
CURLOPT_USERPWD,我們可以利用這個參數把帳號密碼在請求時傳送過去。
curl_setopt($ch, CURLOPT_USERPWD, '帳號:密碼');
curl要求的程式修改為:
#
<?php $url = 'http://localhost/server.php'; $param = array('content'=>'fdipzone blog'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERPWD, 'fdipzone:654321'); // 加入这句 $ret = curl_exec($ch); $retinfo = curl_getinfo($ch); curl_close($ch); if($retinfo['http_code']==200){ $data = json_decode($ret, true); print_r($data); }else{ echo 'POST Fail'; } ?>而file_get_contents 如果要傳送帳號和密碼,需要手動拼接header
file_get_contents 要求的程式修改為:
<?php $url = 'http://localhost/server.php'; $param = array('content'=>'fdipzone blog'); $auth = sprintf('Authorization: Basic %s', base64_encode('fdipzone:654321')); // 加入这句 $opt = array( 'http' => array( 'method' => 'POST', 'header' => "content-type:application/x-www-form-urlencoded\r\n".$auth."\r\n", // 把$auth加入到header 'content' => http_build_query($param) ) ); $context = stream_context_create($opt); $ret = file_get_contents($url, false, $context); if($ret){ $data = json_decode($ret, true); print_r($data); }else{ echo 'POST Fail'; } ?>相關推薦:
PHP中file_put_contents函數詳解
PHP使用file_get_contents傳送http要求步驟詳解
file_get_contents函數介紹與使用方法詳解
#
以上是PHP實作curl或file_get_contents 取得需要授權頁面的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!