溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

復(fù)習(xí)PHP-語言參考-Context選項(xiàng)和參數(shù)

發(fā)布時(shí)間:2020-07-08 17:07:11 來源:網(wǎng)絡(luò) 閱讀:302 作者:qzd1989 欄目:web開發(fā)

1.在file_get_contents和fopen作為參數(shù)調(diào)用。

resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )

string file_get_contents ( string $filename [, bool $use_include_path = false [, resource $context [, int $offset = -1[, int $maxlen ]]]] )

注意這兩個(gè)函數(shù)都有一個(gè)context參數(shù),類型是resource

而context是怎么整理并放置進(jìn)去的呢? 簡單的案例

如下:

<?php
$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en\r\n" .
              "Cookie: foo=bar\r\n"
  )
);

$context = stream_context_create($opts);

/* Sends an http request to www.example.com
   with additional headers shown above */
$fp = fopen('http://www.example.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
?>

具體的用法就是將一個(gè)數(shù)組形式的參數(shù)列表用create方法創(chuàng)建,即可在fopen和file_get_contents中使用了。

以下是官方的解釋:

PHP 提供了多種上下文選項(xiàng)和參數(shù),可用于所有的文件系統(tǒng)或數(shù)據(jù)流封裝協(xié)議。上下文(Context)由stream_context_create() 創(chuàng)建。選項(xiàng)可通過 stream_context_set_option() 設(shè)置,參數(shù)可通過stream_context_set_params() 設(shè)置。

簡單例:

<?php
$options = [
    "socket" =>[
        "bindto"=>"0:7000", //”127.0.0.120:7001”
    ],
];
$context = stream_context_create($options);
echo file_get_contents("http://www.baidu.com",false,$context);
?>

這里是以本機(jī)7000端口去訪問獲取百度的首頁內(nèi)容。

例3獲取一個(gè)頁面并發(fā)送POST數(shù)據(jù):

<?php
$postdata = http_build_query(
    array(
'var1' => 'some content',
'var2' => 'doh'
)
);
$opts = array('http' =>
    array(
'method'  => 'POST',
'header'  => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('http://example.com/submit.php', false, $context);
?>

例4
<?php
$data = array ('foo' => 'bar');
$data = http_build_query($data);
$opts = array (
     'http' => array (
         'method' => 'POST',
         'header'=> "Content-type: application/x-www-form-urlencoded\r\n" .
                    "Content-Length: " . strlen($data) . "\r\n",
         'content' => $data
     ),
);
$context = stream_context_create($opts);
$html = file_get_contents('http://www.example.com', false, $context);
echo $html;
?>

 

本章對(duì)context的講解主要用于各種協(xié)議內(nèi)容的獲取,POST GET 和相關(guān)的設(shè)置,包含curl,file_get_contents,fopen,soket,還有各種http https ftp ssl 等。 具體在實(shí)際運(yùn)用中再詳細(xì)研究。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI