| Current Path : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-http/src/Header/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-http/src/Header/ContentDisposition.php |
<?php
namespace Laminas\Http\Header;
use function sprintf;
use function strtolower;
/**
* @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html#sec19.5.1
*
* @throws Exception\InvalidArgumentException
*/
class ContentDisposition implements HeaderInterface
{
/** @var string */
protected $value;
/**
* @param string $headerLine
* @return static
*/
public static function fromString($headerLine)
{
[$name, $value] = GenericHeader::splitHeaderLine($headerLine);
// check to ensure proper header type for this factory
if (strtolower($name) !== 'content-disposition') {
throw new Exception\InvalidArgumentException(sprintf(
'Invalid header line for Content-Disposition string: "%s"',
$name
));
}
// @todo implementation details
return new static($value);
}
/** @param null|string $value */
public function __construct($value = null)
{
if ($value !== null) {
HeaderValue::assertValid($value);
$this->value = $value;
}
}
/** @return string */
public function getFieldName()
{
return 'Content-Disposition';
}
/** @return string */
public function getFieldValue()
{
return (string) $this->value;
}
/** @return string */
public function toString()
{
return 'Content-Disposition: ' . $this->getFieldValue();
}
}