/monica/monica/vendor/zendframework/zendframework/library/Zend/Http/Header/ContentMD5.php
https://bitbucket.org/alexandretaz/maniac_divers · PHP · 50 lines · 27 code · 10 blank · 13 comment · 1 complexity · 580813fc06c678041c462217a9ee92b1 MD5 · raw file
- <?php
- /**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- namespace Zend\Http\Header;
- /**
- * @throws Exception\InvalidArgumentException
- * @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.15
- */
- class ContentMD5 implements HeaderInterface
- {
- public static function fromString($headerLine)
- {
- $header = new static();
- list($name, $value) = explode(': ', $headerLine, 2);
- // check to ensure proper header type for this factory
- if (strtolower($name) !== 'content-md5') {
- throw new Exception\InvalidArgumentException('Invalid header line for Content-MD5 string: "' . $name . '"');
- }
- // @todo implementation details
- $header->value = $value;
- return $header;
- }
- public function getFieldName()
- {
- return 'Content-MD5';
- }
- public function getFieldValue()
- {
- return $this->value;
- }
- public function toString()
- {
- return 'Content-MD5: ' . $this->getFieldValue();
- }
- }