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()
|
|
|
|
{
|
|
|
|
$items = $this->getItems();
|
2018-12-27 00:41:32 +03:00
|
|
|
$data = [];
|
|
|
|
|
|
|
|
foreach ($items as $item) {
|
|
|
|
$data[] = $item->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
$toReturn = print_r($data, true);
|
2016-11-07 22:49:44 +03:00
|
|
|
|
|
|
|
// Remove invalid non-UTF8 characters
|
|
|
|
ini_set('mbstring.substitute_character', 'none');
|
|
|
|
$toReturn = mb_convert_encoding($toReturn, $this->getCharset(), 'UTF-8');
|
|
|
|
return $toReturn;
|
2016-09-10 21:41:11 +03:00
|
|
|
}
|
|
|
|
}
|