GLOBAL settings here. * Make sure they have appropriate docblocks to avoid phpDocumentor * construing they are documented by the page-level docblock. */ /** * A class for reading Microsoft Excel Spreadsheets. * * Originally developed by Vadim Tkachenko under the name PHPExcelReader. * (http://sourceforge.net/projects/phpexcelreader) * Based on the Java version by Andy Khan (http://www.3ppt.com). Now * maintained by David Sanders. Reads only Biff 7 and Biff 8 formats. * * @category Spreadsheet * @package Spreadsheet_Excel_Reader * @author Vadim Tkachenko <vt@shoujidy.com> * @copyright 2010-2011 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version Release: @package_version@ * @link http://pear.php.net/package/PackageName * @see OLE, Spreadsheet_Excel_Writer */ class ReadexcelSystem{ /** * Array of worksheets found * * @var array * @access public */ var $boundsheets = array(); /** * Array of format records found * * @var array * @access public */ var $formatRecords = array(); /** * todo * * @var array * @access public */ var $sst = array(); /** * Array of worksheets * * The data is stored in ''cells'' and the meta-data is stored in an array * called ''cellsInfo'' * * Example: * * $sheets --> ''cells'' --> row --> column --> Interpreted value * --> ''cellsInfo'' --> row --> column --> ''type'' - Can be ''date'', ''number'', or ''unknown'' * --> ''raw'' - The raw data that Excel stores for that data cell * * @var array * @acc