Title.php
415 Bytes
<?php
/**
* Created by PhpStorm.
* User: Zip
* Date: 14/12/16
* Time: 下午1:00
*/
namespace Hood\Helper\View;
class Title extends ViewAbstract
{
private $_title = '';
public function headTitle($title)
{
$this->_title = $title;
return $this;
}
public function __toString()
{
return '<title>' . $this->_escape($this->_title) . '</title>' . PHP_EOL;
}
}