Skip to content
This repository was archived by the owner on Sep 11, 2022. It is now read-only.

Commit 78bdf1e

Browse files
add OExcelReader function
1 parent 4223884 commit 78bdf1e

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

OExcelReader.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
/**
4+
* JPhpExcelReader class file.
5+
*
6+
* @author jerry2801 <jerry2801@gmail.com>
7+
* @version alpha 2 2010-5-18 14:26
8+
*
9+
* @modify Putra Sudaryanto <putra@sudaryanto.id>
10+
* @copyright Copyright (c) 2017 Ommu Platform (opensource.ommu.co)
11+
* @created date 25 September 2017, 05:24 WIB
12+
* @link https://github.com/ommu/php-excel-reader
13+
* @contact (+62)856-299-4114
14+
*
15+
* A typical usage of OExcelReader is as follows:
16+
* <pre>
17+
* Yii::import('application.vendors.ommu.php-excel-reader.OExcelReader');
18+
* $data=new OExcelReader('example.xls');
19+
* echo $data->dump(true,true);
20+
* </pre>
21+
*/
22+
23+
require_once dirname(__FILE__).DIRECTORY_SEPARATOR.'excel_reader2.php';
24+
25+
class OExcelReader extends Spreadsheet_Excel_Reader
26+
{
27+
}

0 commit comments

Comments
 (0)