9 lines
143 B
PHP
9 lines
143 B
PHP
|
<?php
|
||
|
|
||
|
function get_header($key) {
|
||
|
$headers = getallheaders();
|
||
|
|
||
|
return isset($headers[$key])
|
||
|
? $headers[$key]
|
||
|
: NULL;
|
||
|
}
|