This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

View 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) { }
}