01.
<?php
02.
header(
"Content-type:application/json; charset=UTF-8"
);
03.
header(
"Cache-Control: no-store, no-cache, must-revalidate"
);
04.
header(
"Cache-Control: post-check=0, pre-check=0"
, false);
05.
06.
error_reporting
(E_ALL);
07.
ini_set
(
'display_errors'
, TRUE);
08.
ini_set
(
'display_startup_errors'
, TRUE);
09.
date_default_timezone_set(
'Asia/Bangkok'
);
10.
11.
require_once
(
"PHPExcel/Classes/PHPExcel.php"
);
12.
?>
13.
<?php
14.
if
(isset(
$_FILES
[
'excelFile'
][
'name'
]) &&
$_FILES
[
'excelFile'
][
'name'
]!=
""
){
15.
$tmpFile
=
$_FILES
[
'excelFile'
][
'tmp_name'
];
16.
$fileName
=
$_FILES
[
'excelFile'
][
'name'
];
17.
$_fileup
=
$_FILES
[
'excelFile'
];
18.
$info
=
pathinfo
(
$fileName
);
19.
$allow_file
=
array
(
"csv"
,
"xls"
,
"xlsx"
);
20.
21.
22.
if
(
$fileName
!=
""
&& in_array(
$info
[
'extension'
],
$allow_file
)){
23.
24.
$objPHPExcel
= PHPExcel_IOFactory::load(
$tmpFile
);
25.
26.
27.
28.
$cell_collection
=
$objPHPExcel
->getActiveSheet()->getCellCollection();
29.
30.
31.
$v
=1;
32.
$json_data
=
array
();
33.
foreach
(
$cell_collection
as
$cell
) {
34.
35.
$column
=
$objPHPExcel
->getActiveSheet()->getCell(
$cell
)->getColumn();
36.
37.
$row
=
$objPHPExcel
->getActiveSheet()->getCell(
$cell
)->getRow();
38.
39.
$data_value
=
$objPHPExcel
->getActiveSheet()->getCell(
$cell
)->getValue();
40.
41.
42.
43.
$json_data
[
"$column$row"
] =
$data_value
;
44.
45.
$v
++;
46.
}
47.
48.
if
(isset(
$json_data
)){
49.
$json
= json_encode(
$json_data
);
50.
if
(isset(
$_GET
[
'callback'
]) &&
$_GET
[
'callback'
]!=
""
){
51.
echo
$_GET
[
'callback'
].
"("
.
$json
.
");"
;
52.
}
else
{
53.
echo
$json
;
54.
}
55.
}
56.
}
57.
}
58.
?>