mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
Merge 0e4830e0ed
into dee734d360
This commit is contained in:
commit
ab1bc3e860
17
formats/BarejsonFormat.php
Normal file
17
formats/BarejsonFormat.php
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
class BarejsonFormat extends FormatAbstract
|
||||||
|
{
|
||||||
|
const MIME_TYPE = 'application/json';
|
||||||
|
|
||||||
|
public function stringify()
|
||||||
|
{
|
||||||
|
if (count($this->getItems()) != 1) {
|
||||||
|
throw new Exception('Unable to identify the target');
|
||||||
|
}
|
||||||
|
$item = $this->getItems()[0];
|
||||||
|
$content = $item->getContent() ?? '';
|
||||||
|
$content = mb_convert_encoding($content, $this->getCharset(), 'UTF-8');
|
||||||
|
return $content;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user