程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP stream_context_create()函數的使用示例,createfile函數

PHP stream_context_create()函數的使用示例,createfile函數

編輯:關於PHP編程

PHP stream_context_create()函數的使用示例,createfile函數


stream_context_create()函數是用來 創建打開文件的上下文件選項 ,用於fopen(),file_get_contents()等過程的超時設置、代理服務器、請求方式、頭信息設置的特殊過程。

比如說,上篇php教程中gd庫實現下載網頁所有圖片中,第10行:

利用了stream_context_create()設置代理服務器:
復制代碼 代碼如下:
//設置代理服務器
$opts = array('http'=>array('request_fulluri'=>true));
$context = stream_context_create($opts);
$content = file_get_contents($url,false,$context);

利用了stream_context_create()設置超時時間:
復制代碼 代碼如下:
 $opts = array(
    'http'=>array(
    'method'=>"GET",
    'timeout'=>60,
  )
);
$context = stream_context_create($opts);
$html =file_get_contents('http://www.bkjia.com', false, $context);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved