|  Download HTTP HeadersThe Pimf\Util\Header class is a container of static methods for HTTP headers. The Headers container will statically load Header objects
as to reduce the overhead of header specific parsing. There are several implementations for the various types of Headers that one
might encounter during the typical HTTP request. Sometimes you will need a little more control over the response sent to the browser. For example, you may need to set a custom header
on the response, or change the HTTP status code. Here's how it can be used: Removes previously set headersPimf\Util\Header::clear();
 Send JSON dataPimf\Util\Header::clear();
Pimf\Util\Header::contentTypeJson();
die(Pimf\Util\Json::encode(array('name'=>'Rob')));
 Send file to browserSends file as header through any firewall and browser - IE6, IE7, IE8, IE9, FF3.6, FF11, Safari, Chrome, Opera. $fileOrString = file_get_contents('path/to/samp.txt');
$fileName     = 'a-cool-new-file-name.txt';
Pimf\Util\Header::sendDownloadDialog($fileOrString, $fileName);
 Redirect to location$url = 'https://github.com/gjerokrsteski/pimf/wiki':
Pimf\Util\Header::toLocation($url);
 Send a internal server error - 500 pagePimf\Util\Header::sendInternalServerError($msg = 'Whoops, we have problem!')
 Send a page not found - 404 pagePimf\Util\Header::sendNotFound($msg = 'Sorry, page not found!')
 |