コード例 #1
0
ファイル: UpdateInfoContainer.php プロジェクト: ngchie/system
 /**
  * Get string representation of the object
  *
  * @return string
  */
 public function getObjectDump()
 {
     if ($this->_dump === null) {
         return '';
     }
     if (is_string($this->_dump)) {
         return $this->_dump;
     }
     return $this->_dump->getRef();
 }
コード例 #2
0
ファイル: Stream.php プロジェクト: Cryde/sydney-core
 /**
  * Return object as string
  *
  * @param Zend_Pdf_Factory $factory
  * @return string
  */
 public function toString($factory = null)
 {
     return "stream\n" . $this->value->getRef() . "\nendstream";
 }
コード例 #3
0
 /**
  * Get string value reference
  *
  * _Must_ be used for value access before PHP v 5.2
  * or _may_ be used for performance considerations
  *
  * @return &string
  */
 public function &getRef()
 {
     return $this->_memContainer->getRef();
 }