1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-03-26 11:31:55 +03:00
rss-bridge/formats/JsonFormat.php

26 lines
603 B
PHP
Raw Normal View History

2013-08-11 13:30:41 +02:00
<?php
/**
* Json
* Builds a JSON string from $this->items and return it to browser.
*/
class JsonFormat extends FormatAbstract {
2013-08-11 13:30:41 +02:00
public function stringify(){
$items = $this->getItems();
$toReturn = json_encode($items, JSON_PRETTY_PRINT);
// Remove invalid non-UTF8 characters
ini_set('mbstring.substitute_character', 'none');
$toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8');
return $toReturn;
}
2013-08-11 13:30:41 +02:00
public function display(){
$this
->setContentType('application/json; charset=' . $this->getCharset())
->callContentType();
2013-08-11 13:30:41 +02:00
return parent::display();
}
}