Пример #1
0
 public function getCollection()
 {
     $isXml = substr($this->data, 0, 1) == '<';
     if ($isXml) {
         $importer = new XmlImporter($this->data);
         return $importer->getCollection();
     } else {
         $c = new Collection();
         $c->parse($this->data, false);
         return $c;
     }
 }