staticmaplite/src/Output/AbstractOutput.php

18 lines
438 B
PHP

<?php
namespace StaticMapLite\Output;
abstract class AbstractOutput implements OutputInterface
{
public function sendHeader(): OutputInterface
{
header('Content-Type: image/png');
$expires = 60 * 60 * 24 * 14;
header('Pragma: public');
header('Cache-Control: maxage=' . $expires);
header('Expires: ' . gmdate('D, d M Y H:i:s', time() + $expires) . ' GMT');
return $this;
}
}