コード例 #1
0
ファイル: ApiView.php プロジェクト: scotchphp/scotch
 function render($r = self::RETURN_TYPE_JSON)
 {
     if ($r == self::RETURN_TYPE_XML) {
         header('Content-Type: application/xml');
         echo XmlSerializer::serialize($this->data);
     } else {
         header('Content-Type: application/json');
         echo json_encode($this->data);
     }
 }
コード例 #2
0
ファイル: XmlSerializable.php プロジェクト: scotchphp/scotch
 function serialize()
 {
     return XmlSerializer::serialize($this);
 }