mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-18 08:09:56 +03:00
19 lines
492 B
PHP
19 lines
492 B
PHP
<?php
|
|
|
|
class PlaintextFormat extends FormatAbstract
|
|
{
|
|
const MIME_TYPE = 'text/plain';
|
|
|
|
public function stringify()
|
|
{
|
|
$data = [];
|
|
foreach ($this->getItems() as $item) {
|
|
$data[] = $item->toArray();
|
|
}
|
|
$text = print_r($data, true);
|
|
// Remove invalid non-UTF8 characters
|
|
ini_set('mbstring.substitute_character', 'none');
|
|
$text = mb_convert_encoding($text, $this->getCharset(), 'UTF-8');
|
|
return $text;
|
|
}
|
|
}
|