2013-08-11 15:30:41 +04:00
|
|
|
<?php
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-09-10 21:41:11 +03:00
|
|
|
class PlaintextFormat extends FormatAbstract
|
|
|
|
{
|
2019-10-31 21:00:12 +03:00
|
|
|
const MIME_TYPE = 'text/plain';
|
|
|
|
|
2016-09-10 21:41:11 +03:00
|
|
|
public function stringify()
|
|
|
|
{
|
2024-01-09 22:18:33 +03:00
|
|
|
$feed = $this->getFeed();
|
2023-09-25 23:32:15 +03:00
|
|
|
foreach ($this->getItems() as $item) {
|
2024-01-09 22:18:33 +03:00
|
|
|
$feed['items'][] = $item->toArray();
|
2018-12-27 00:41:32 +03:00
|
|
|
}
|
2024-01-09 22:18:33 +03:00
|
|
|
$text = print_r($feed, true);
|
2016-11-07 22:49:44 +03:00
|
|
|
// Remove invalid non-UTF8 characters
|
|
|
|
ini_set('mbstring.substitute_character', 'none');
|
2023-09-25 23:32:15 +03:00
|
|
|
$text = mb_convert_encoding($text, $this->getCharset(), 'UTF-8');
|
|
|
|
return $text;
|
2016-09-10 21:41:11 +03:00
|
|
|
}
|
|
|
|
}
|