コード例 #1
0
ファイル: Rest_xml.php プロジェクト: uxturtle/core-module
 public function fetch($url)
 {
     parent::fetch($url);
     if (stripos($this->output, '<?xml') === 0) {
         return simplexml_load_string($this->output, 'SimpleXMLElement', LIBXML_NOCDATA);
     } else {
         return FALSE;
     }
 }
コード例 #2
0
ファイル: Rest_json.php プロジェクト: uxturtle/core-module
 public function fetch($url, $levels = NULL)
 {
     parent::fetch($url);
     $this->output = json_encode($this->output);
     return $this->output;
 }