কম্পিউটার

পিএইচপি $http_response_header


পরিচয়

সুপারগ্লোবাল $http_response_header get_headers() এর ক্ষেত্রে অ্যারে HTTP প্রতিক্রিয়া শিরোনাম দ্বারা পপুলেট করা হয় ফাংশন এই অ্যারেটি PHP

-এর স্থানীয় স্থানে তৈরি করা হয়েছে

$http_response_header

উদাহরণ

<?php
file_get_contents("https://localhost");
$arr=$http_response_header;
foreach ($arr as $key=>$val)
echo "<p>$key=>$val </p>";
?>

আউটপুট

ব্রাউজার ফলো করার অনুরূপ ফলাফল প্রদর্শন করবে

0=>HTTP/1.1 302 Found
1=>Date: Tue, 08 Sep 2020 14:49:24 GMT
2=>Server: Apache/2.4.41 (Win64) OpenSSL/1.0.2s PHP/7.1.32
3=>X-Powered-By: PHP/7.1.32
4=>Location: https://localhost/dashboard/
5=>Content-Length: 0
6=>Connection: close
7=>Content-Type: text/html; charset=UTF-8
8=>HTTP/1.1 200 OK
9=>Date: Tue, 08 Sep 2020 14:49:24 GMT
10=>Server: Apache/2.4.41 (Win64) OpenSSL/1.0.2s PHP/7.1.32
11=>Last-Modified: Mon, 02 Sep 2019 15:45:31 GMT
12=>ETag: "1d99-59193dc9c3cc0"
13=>Accept-Ranges: bytes
14=>Content-Length: 7577
15=>Connection: close
16=>Content-Type: text/html

  1. পিএইচপি HTTP প্রসঙ্গ বিকল্প

  2. পিএইচপি ট্যাগ

  3. পিএইচপি পাই() ফাংশন

  4. কিভাবে PHP এ XML ফাইল ইকো করবেন