Cet article présente principalement la méthode de définition des informations d'en-tête et d'obtention des informations d'en-tête de retour en PHP, et analyse les techniques d'exploitation basées sur PHP pour les informations d'en-tête avec des exemples. Les amis dans le besoin peuvent se référer à
Cet article explique. les exemples Décrit comment définir les informations d'en-tête et obtenir les informations d'en-tête de retour en PHP. Partagez-le avec tout le monde pour votre référence, les détails sont les suivants :
Pour définir les informations d'en-tête de la requête, nous pouvons utiliser la fonction header, fsockopen, curl, etc. Cet article parle principalement de l'utilisation de curl pour définir les informations d'en-tête et obtenir les informations d'en-tête renvoyées.
1. La partie requérante définit ses propres informations d'en-tête, header.php
<?php function FormatHeader($url, $myIp = null,$xml = null) { // 解悉url $temp = parse_url($url); $query = isset($temp['query']) ? $temp['query'] : ''; $path = isset($temp['path']) ? $temp['path'] : '/'; $header = array ( "POST {$path}?{$query} HTTP/1.1", "Host: {$temp['host']}", "Content-Type: text/xml; charset=utf-8", 'Accept: */*', "Referer: http://{$temp['host']}/", 'User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1)', "X-Forwarded-For: {$myIp}", "Content-length: 380", "Connection: Close" ); return $header; } $interface = 'http://localhost/test/header2.php'; $header = FormatHeader($interface,'10.1.11.1'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $interface); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); //设置头信息的地方 curl_setopt($ch, CURLOPT_HEADER, 0); //不取得返回头信息 curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); var_dump($result); ?>
2. La partie requise obtient les informations d'en-tête, header2. php
<?php print_r($_SERVER); //头信息里面有内容绝大部分是放在系统变量里面的 ?>
3. Jetez un œil aux résultats de la requête header.php
string(1045) "Array ( [HTTP_HOST] => localhost [CONTENT_TYPE] => text/xml; charset=utf-8 [HTTP_ACCEPT] => */* [HTTP_REFERER] => http://localhost/ [HTTP_USER_AGENT] => Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1) [HTTP_X_FORWARDED_FOR] => 10.1.11.1 [CONTENT_LENGTH] => 380 [PATH] => /usr/local/bin:/usr/bin:/bin [SERVER_SIGNATURE] => <address>Apache/2.2.16 (Ubuntu) Server at localhost Port 80</address> 。。。。。。。。。。。。。。。。。。。。。。。。。。。。 )
Pour celles ci-dessus, nous pouvons clairement voir que c'est moi Définir les informations d'en-tête.
4. Obtenez les informations d'en-tête renvoyées
Copiez le code Le code est le suivant :
curl_setopt($ch, CURLOPT_HEADER, 1); //取得返回头信息
Nous mettons CURLOPT_HEADER à 1. Dans les résultats obtenus, il y aura cette information devant le tableau d'affichage
string(1239) "HTTP/1.1 200 OK Date: Fri, 27 May 2011 01:57:57 GMT Server: Apache/2.2.16 (Ubuntu) X-Powered-By: PHP/5.3.3-1ubuntu9.5 Vary: Accept-Encoding Content-Length: 1045 Content-Type: text/html Array ( [HTTP_HOST] => localhost [CONTENT_TYPE] => text/xml; charset=utf-8 [HTTP_ACCEPT] => */*
5 Les informations d'en-tête $_SERVER ne peuvent pas être obtenues<🎜. >
Modifier header.php<?php function FormatHeader($url, $myIp = null,$xml = null) { // 解悉url $temp = parse_url($url); $query = isset($temp['query']) ? $temp['query'] : ''; $path = isset($temp['path']) ? $temp['path'] : '/'; $header = array ( "POST {$path}?{$query} HTTP/1.1", "Host: {$temp['host']}", "Content-Type: text/xml; charset=utf-8", 'Accept: */*', "Referer: http://{$temp['host']}/", 'User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1)', "X-Forwarded-For: {$myIp}", "Content-length: " . strlen($xml) ."\r\n\r\n" .$xml, //修改1 "Connection: Close" ); return $header; } $xml = '<?xml version="1.0" encoding="utf-8"?> //修改2 <profile> <sha1>adsfadsf</sha1> <user_id>asdfasdf</user_id> <album_id>asdf</album_id> <album_name>asdf</album_name> <tags>asdfasd</tags> <title>asdfasdf</title> <content>asdfadsf</content> <type>asdfasdf</type> <copyright>asdfasdf</copyright> </profile>'; $interface = 'http://localhost/test/header2.php'; $header = FormatHeader($interface,'10.1.11.1',$xml); //修改3 $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $interface); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); //设置头信息的地方 curl_setopt($ch, CURLOPT_HEADER, 0); //不取得返回头信息 curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); var_dump($result); ?>
$raw_post_data = file_get_contents('php://input', 'r'); var_dump($raw_post_data);
Explication détaillée de la façon dont PHP définit l'attribut HTTPONLY du cookie
Définir les variables d'environnement du serveur (Apache/Nginx) pour PHP
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!