search
Homephp教程php手册PHP sends request headers and receives print request headers

1. Send request header

<span style="color: #008000;">//</span><span style="color: #008000;">发送地址</span>
<span style="color: #800080;">$url</span> = 'http://127.0.0.1/2.php'<span style="color: #000000;">;
</span><span style="color: #008000;">//</span><span style="color: #008000;">请求头内容</span>
<span style="color: #800080;">$headers</span> = <span style="color: #0000ff;">array</span><span style="color: #000000;">(
    </span>'Authorization: '.<span style="color: #800080;">$basic</span>,
    'suibianzhi: '.<span style="color: #800080;">$basic</span>,<span style="color: #000000;">
);
</span><span style="color: #008000;">//</span><span style="color: #008000;">使用curl发送</span>
<span style="color: #800080;">$ch</span> = curl_init(<span style="color: #800080;">$url</span><span style="color: #000000;">);
curl_setopt(</span><span style="color: #800080;">$ch</span>, CURLOPT_RETURNTRANSFER, <span style="color: #0000ff;">true</span><span style="color: #000000;">);
curl_setopt(</span><span style="color: #800080;">$ch</span>, CURLOPT_SSL_VERIFYPEER, <span style="color: #0000ff;">false</span><span style="color: #000000;">);
curl_setopt(</span><span style="color: #800080;">$ch</span>, CURLOPT_SSL_VERIFYHOST, <span style="color: #0000ff;">false</span><span style="color: #000000;">);
curl_setopt(</span><span style="color: #800080;">$ch</span>, CURLOPT_HTTPHEADER, <span style="color: #800080;">$headers</span><span style="color: #000000;">);
</span><span style="color: #800080;">$result</span> = curl_exec(<span style="color: #800080;">$ch</span><span style="color: #000000;">);
curl_close(</span><span style="color: #800080;">$ch</span><span style="color: #000000;">);
</span><span style="color: #0000ff;">echo</span> <span style="color: #800080;">$result</span>;

2. Receive and print the request header

<span style="color: #800080;">$headers</span> = <span style="color: #0000ff;">array</span><span style="color: #000000;">();
</span><span style="color: #0000ff;">foreach</span> (<span style="color: #800080;">$_SERVER</span> <span style="color: #0000ff;">as</span> <span style="color: #800080;">$key</span> => <span style="color: #800080;">$value</span><span style="color: #000000;">) {
    </span><span style="color: #0000ff;">if</span> ('HTTP_' == <span style="color: #008080;">substr</span>(<span style="color: #800080;">$key</span>, 0, 5<span style="color: #000000;">)) {
        </span><span style="color: #800080;">$headers</span>[<span style="color: #008080;">str_replace</span>('_', '-', <span style="color: #008080;">substr</span>(<span style="color: #800080;">$key</span>, 5))] = <span style="color: #800080;">$value</span><span style="color: #000000;">;
    }
}    
</span><span style="color: #0000ff;">echo</span> '<pre class="brush:php;toolbar:false">'<span style="color: #000000;">;
</span><span style="color: #008080;">print_r</span>(<span style="color: #800080;">$headers</span>);  

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.