コード例 #1
0
ファイル: BaseModel.php プロジェクト: appleboy/LazyRecord
 /**
  * Return xml format data
  *
  * @return string XML string
  */
 public function toXml()
 {
     // TODO: improve element attributes
     $ser = new XmlSerializer();
     return $ser->encode($this->_data);
 }
コード例 #2
0
ファイル: BaseCollection.php プロジェクト: azole/LazyRecord
 public function toXml()
 {
     $list = $this->toArray();
     $xml = new XmlSerializer();
     return $xml->encode($list);
 }