示例#1
0
 public function __toString()
 {
     return parent::__toString() . ' ' . $this->_targetHostName;
 }
示例#2
0
 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;
 }