如何让 PHP 显示它从浏览器收到的标头?

2022-01-11 00:00:00 http header php

它们都存储在 $_SERVER 中吗?甚至是定制的?

Are they all stored in $_SERVER? Even custom ones?

推荐答案

试试这个

print_r($_SERVER)

它将列出数组中的所有内容

It will list everything within the array

相关文章