2013-08-11 13:30:41 +02:00
|
|
|
<?php
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
class PlaintextFormat extends FormatAbstract
|
|
|
|
{
|
2019-10-31 19:00:12 +01:00
|
|
|
const MIME_TYPE = 'text/plain';
|
|
|
|
|
2016-09-10 20:41:11 +02:00
|
|
|
public function stringify()
|
|
|
|
{
|
|
|
|
$items = $this->getItems();
|
2018-12-26 22:41:32 +01:00
|
|
|
$data = [];
|
|
|
|
|
|
|
|
foreach ($items as $item) {
|
|
|
|
$data[] = $item->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
$toReturn = print_r($data, true);
|
2016-11-07 20:49:44 +01: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 20:41:11 +02:00
|
|
|
}
|
|
|
|
}
|