init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
34
lib/SimpleExcel/Parser/XLSXParser.php
Normal file
34
lib/SimpleExcel/Parser/XLSXParser.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
namespace SimpleExcel\Parser;
|
||||
|
||||
/**
|
||||
* SimpleExcel class for parsing Microsoft Excel XLSX Spreadsheet
|
||||
*
|
||||
* @author Faisalman
|
||||
* @package SimpleExcel
|
||||
*/
|
||||
class XLSXParser extends BaseParser implements IParser
|
||||
{
|
||||
/**
|
||||
* Defines valid file extension
|
||||
*
|
||||
* @access protected
|
||||
* @var string
|
||||
*/
|
||||
protected $file_extension = 'xlsx';
|
||||
|
||||
/**
|
||||
* Load an XLSX file to be parsed
|
||||
*
|
||||
* @param string $file_path Path to XLSX file
|
||||
*/
|
||||
public function loadFile($file_path) { }
|
||||
|
||||
/**
|
||||
* Load the string to be parsed
|
||||
*
|
||||
* @param string $str String with XLSX format
|
||||
*/
|
||||
public function loadString($str) { }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue