How to set header parameters for php's curl request: first use [CURLOPT_HTTPHEADER] to set an array of HTTP header fields; then use an HTTP header that only contains necessary header fields by default.
How to set header parameters in php’s curl request:
When curl request parameters are set, CURLOPT_HTTPHEADER
Set the array of HTTP header fields.
Format: array('Content-type: text/plain', 'Content-length: 100')
Simple example:
function http_post($sUrl, $aHeader, $aData){ $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_URL, $sUrl); curl_setopt($ch, CURLOPT_HTTPHEADER, $aHeader); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($aData)); $sResult = curl_exec($ch); if($sError=curl_error($ch)){ die($sError); } curl_close($ch); return $sResult; } $url = 'https://www.example.com; $header = array('User-Agent:Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'); $data = array(); $data = http_post($url,$header,$data);
When you use curl to send a When a URL sends an HTTP request, it uses an HTTP header that by default contains only the necessary header fields (such as User-Agent, Host, and Accept).
But in some cases, you may want to override the default HTTP headers or add a new custom header field in an HTTP request. For example, you might want to override the "HOST" field to test a load balancer, or impersonate a specific browser by rewriting the "User-Agent" string to work around some access restrictions.
Recently researched the data related to 12306 train tickets. When you want to capture the remaining ticket information, the local request must set the User-Agent" string to impersonate a specific browser, otherwise the request will fail:
/** * 余票查询 * leftTicketDTO.train_date: 时间 * leftTicketDTO.from_station: 出发车站电码 * leftTicketDTO.to_station: 目的车站电码 * purpose_codes: 乘客类型(成人:ADULT,学生:0X00) * author 洋葱 * @return bool|mixed */ function get_left_tickets(){ $url = 'https://kyfw.12306.cn/otn/leftTicket/queryZ?'; // $url = 'https://kyfw.12306.cn/otn/leftTicketPrice/query?'; $param = [ 'leftTicketDTO.train_date' => '2019-02-13', 'leftTicketDTO.from_station' => 'BJP', 'leftTicketDTO.to_station' => 'SHH', 'purpose_codes' => 'ADULT' ]; $http_param = http_build_query($param); $url = $url.$http_param; //重写"User-Agent"字符串来假冒特定浏览器以解决访问限制的问题 $header = array('User-Agent:Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'); $data = curl_request($url,true,'GET',null,$header); if($data){ $data = json_decode($data,true); } return $data; }
Related video recommendations: PHP programming from entry to proficiency
The above is the detailed content of How to set header parameters for php curl request. For more information, please follow other related articles on the PHP Chinese website!

The article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

Article discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.

The article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand

The article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

The article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.

The article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software