示例#1
0
 /**
  * When true the output should be displayed in the result HEAD,
  * otherwise in the BODY.
  *
  * @return boolean
  */
 public function getInHeader()
 {
     if ($this->_inHeader instanceof \MUtil_Lazy_LazyInterface) {
         return (bool) \MUtil_Lazy::raise($this->_inHeader);
     } else {
         return (bool) $this->_inHeader;
     }
 }
示例#2
0
文件: Raw.php 项目: GemsTracker/MUtil
 /**
  * The current content
  *
  * @return string
  */
 public function getValue()
 {
     return \MUtil_Lazy::raise($this->_value);
 }