ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## 实例 ### 模拟请求 ``` $opts=[ 'http'=>[ 'method'=>'GEt', 'header'=> "Accept-language: en\r\n" . "Cookie: foo=bar\r\n" ] ]; $context = stream_context_create($opts); $fp = fopen('http://www.baidu.com', 'rb', false, $context); fpassthru($fp); //全部輸出 fclose($fp); ```