ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
JSONWriter.php
Go to the documentation of this file.
1<?php
2
3namespace SimpleExcel\Writer;
4
11class JSONWriter extends BaseWriter implements IWriter
12{
19 protected $content_type = 'application/json';
20
27 protected $file_extension = 'json';
28
34 public function saveString(){
35 return json_encode($this->tabl_data);
36 }
37}
38?>
saveString()
Get document content as string.
Definition: JSONWriter.php:34
define writer interface
Definition: IWriter.php:14