예제 #1
0
 public function __toString()
 {
     return parent::__toString() . ' ' . $this->_targetHostName;
 }
예제 #2
0
파일: Hinfo.php 프로젝트: Talesoft/tale-net
 public function __toString()
 {
     return parent::__toString() . ' ' . $this->cpu . ' ' . $this->os;
 }
예제 #3
0
파일: A.php 프로젝트: Talesoft/tale-net
 public function __toString()
 {
     return parent::__toString() . ' ' . $this->getAddressString();
 }
예제 #4
0
파일: Soa.php 프로젝트: Talesoft/tale-net
 public function __toString()
 {
     $str = implode(' ', [$this->sourceHostName, $this->mailAddress, $this->serial, $this->refreshInterval, $this->retryDelay, $this->expireTime, $this->minTtl]);
     return parent::__toString() . " {$str}";
 }
예제 #5
0
파일: Txt.php 프로젝트: Talesoft/tale-net
 public function __toString()
 {
     return parent::__toString() . ' ' . $this->text;
 }