Source for file GenerallHttpHeaders.php
Documentation is available at GenerallHttpHeaders.php
* "THE BEER-WARE LICENSE" (Revision 42):
* "Sven Strittmatter" <ausserirdisch@sven-space.de> wrote this file.
* As long as you retain this notice you can do whatever you want with
* this stuff. If we meet some day, and you think this stuff is worth it,
* you can buy me a beer in return.
* @package RequestResponse
* @copyright Copyright (c) 2007 Sven Strittmatter
* Enter description here...
* @todo complete description
* @package RequestResponse
* @copyright Copyright (c) 2007 Sven Strittmatter
* @author "Sven Strittmatter" <ausserirdisch@sven-space.de>
* @link http://www.sven-space.de/code/php/MVClasses
// konstanten fuer headers (http://www.bolege.de/http-header/#art2)
const HTTP_HEADER_CACHE_CONTROL = "cache-control";
const HTTP_HEADER_CONTENT_LENGTH = "content-length";
const HTTP_HEADER_PRAGMA = "pragma";
const HTTP_HEADER_CONNECTION = "connection";
const HTTP_HEADER_DATE = "date";
const HTTP_HEADER_UPGRADE = "upgrade";
|