PHP使用file_get_content设置头信息的方法,phpgetfilecontent
PHP使用file_get_content设置头信息的方法,phpgetfilecontent
本文实例讲述了PHP使用file_get_content设置头信息的方法。分享给大家供大家参考,具体如下:
直接上代码:
<?php /** Accept application/json Accept-Encoding gzip, deflate Accept-Language zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3 Connection keep-alive Cookie mzys_is_frist_access=1; mzys_c_uuid=guest_215cbc0979b5bd2; mzys_access20130610=1; mzys_qz_uuid=d6d4640f93cb7a4; CNZZDATA30040410=cnzz_eid%3D1008690174-1370849811-http%253A%252F%252Fm.120ask.com%26ntime%3D1370855345%26cnzz_a%3D43%26retime%3D1370855484258%26sin%3D%26ltime%3D1370855484258%26rtime%3D0; PHPSESSID=4kacoqfe4ae33km3h0l2imjfd6 Host m.120ask.com Referer http://m.120ask.com/health/show?page=2&id=84882&type=17 User-Agent Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20100101 Firefox/21.0 X-Requested-With XMLHttpRequest */ $hdrs = array( 'http' =>array('header' => "Accept: application/json\r\n" . "Accept-Encoding: gzip, deflate\r\n" . "Accept-Language: zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3\r\n" . "Accept-Encoding: gzip, deflate\r\n" . "Connection: keep-alive\r\n" . "Cookie: mzys_is_frist_access=1; mzys_c_uuid=guest_215cbc0979b5bd2; mzys_access20130610=1; mzys_qz_uuid=d6d4640f93cb7a4; CNZZDATA30040410=cnzz_eid%3D1008690174-1370849811-http%253A%252F%252Fm.120ask.com%26ntime%3D1370855345%26cnzz_a%3D43%26retime%3D1370855484258%26sin%3D%26ltime%3D1370855484258%26rtime%3D0; PHPSESSID=4kacoqfe4ae33km3h0l2imjfd6\r\n" . "Host: m.120ask.com\r\n" . "Referer: http://m.120ask.com/health/show?page=2&id=84882&type=17\r\n" . "User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20100101 Firefox/21.0\r\n" . "X-Requested-With: XMLHttpRequest", 'timeout'=>2 ), ); $context = stream_context_create($hdrs); //方式1 // $fp = fopen("http://m.120ask.com/health/show?page=2&id=84882&type=17", 'r', false, $context); // fpassthru($fp); // fclose($fp); //方式2 //echo file_get_contents('http://m.120ask.com/health/show?page=2&id=84882&type=17', 0, $context);
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP基本语法入门教程》、《PHP错误与异常处理方法总结》及《php常用函数与技巧总结》
希望本文所述对大家PHP程序设计有所帮助。
您可能感兴趣的文章:
- PHP中file_get_contents函数抓取https地址出错的解决方法(两种方法)
- PHP file_get_contents函数读取远程数据超时的解决方法
- PHP中使用file_get_contents post数据代码例子
- PHP中使用file_get_contents抓取网页中文乱码问题解决方法
- php 使用file_get_contents读取大文件的方法
- php中file_get_contents与curl性能比较分析
- PHP中file_get_contents高級用法实例
- php中curl、fsocket、file_get_content三个函数的使用比较
- PHP file_get_contents设置超时处理方法
- PHP stream_context_create()函数的使用示例
- PHP stream_context_create()作用和用法分析
- php中突破基于HTTP_REFERER的防盗链措施(stream_context_create)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
