ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
JSONParser.php
Go to the documentation of this file.
1
<?php
2
3
namespace
SimpleExcel\Parser
;
4
5
use
SimpleExcel\Exception\SimpleExcelException
;
6
13
class
JSONParser
extends
BaseParser
implements
IParser
14
{
21
protected
$file_extension
=
'json'
;
22
28
public
function
loadFile
($file_path) {
29
30
if
(!$this->
isFileReady
($file_path)) {
31
return
;
32
}
33
34
$handle = fopen($file_path,
'r'
);
35
$this->
loadString
($handle);
36
fclose($handle);
37
}
38
45
public
function
loadString
($str){
46
$field = array();
47
if
(($table = json_decode(utf8_encode($str),
false
, 4)) === NULL) {
48
throw
new \Exception(
'Invalid JSON format: '
.$str,
SimpleExcelException::MALFORMED_JSON
);
49
}
else
{
50
foreach
($table as $rows) {
51
$row
= array();
52
foreach
($rows as $cell) {
53
array_push(
$row
, $cell);
54
}
55
array_push($field,
$row
);
56
}
57
}
58
$this->table_arr = $field;
59
}
60
}
SimpleExcelException
SimpleExcel\Parser
Definition:
BaseParser.php:3
SimpleExcel\Exception\SimpleExcelException\MALFORMED_JSON
const MALFORMED_JSON
Definition:
SimpleExcelException.php:25
SimpleExcel\Parser\IParser
define parser interface
Definition:
IParser.php:13
SimpleExcel\Parser\BaseParser\isFileReady
isFileReady($file_path)
Check whether file exists, valid, and readable.
Definition:
BaseParser.php:169
SimpleExcel\Parser\JSONParser
Definition:
JSONParser.php:13
$row
$row
Definition:
examplelayouts.sql.php:26
SimpleExcel\Parser\JSONParser\loadString
loadString($str)
Load the string to be parsed.
Definition:
JSONParser.php:45
SimpleExcel\Parser\JSONParser\loadFile
loadFile($file_path)
Load the JSON file to be parsed.
Definition:
JSONParser.php:28
SimpleExcel\Parser\JSONParser\$file_extension
$file_extension
Definition:
JSONParser.php:21
SimpleExcel\Parser\BaseParser
Definition:
BaseParser.php:13
Modules
DataCollection
libs
SimpleExcel
Parser
JSONParser.php
Generated on Mon Mar 31 2025 19:00:35 for ILIAS by
1.8.13 (using
Doxyfile
)