标签:分享图片 echo info div style http bsp php bst
foreach (getallheaders() as $name => $value) { echo "$name: $value\n"; }
function em_getallheaders() { $headers = []; foreach ($_SERVER as $name => $value) { if (substr($name, 0, 5) == ‘HTTP_‘) { $headers[str_replace(‘ ‘, ‘-‘, ucwords(strtolower(str_replace(‘_‘, ‘ ‘, substr($name, 5)))))] = $value; } } return $headers; }
标签:分享图片 echo info div style http bsp php bst
原文地址:https://www.cnblogs.com/woods1815/p/9940823.html