d:\wwwroot\wuchunhua\thinkphp\vendor\phpoffice\phpexcel\install.txt

001: **************************************************************************************
002: * PHPExcel
003: *
004: * Copyright (c) 2006 - 2011 PHPExcel
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or (at your option) any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
019: *
020: * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
021: * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt   LGPL
022: * @version    ##VERSION##, ##DATE##
023: **************************************************************************************
024:
025: Requirements
026: ------------
027:
028: The following requirements should be met prior to using PHPExcel:
029: * PHP version 5.2.0 or higher
030: * PHP extension php_zip enabled *)
031: * PHP extension php_xml enabled
032: * PHP extension php_gd2 enabled (if not compiled in)
033:
034: *) php_zip is only needed by PHPExcel_Reader_Excel2007, PHPExcel_Writer_Excel2007,
035:    PHPExcel_Reader_OOCalc. In other words, if you need PHPExcel to handle .xlsx or .ods
036:    files you will need the zip extension, but otherwise not.
037:
038:
039:
040: Installation instructions
041: -------------------------
042:
043: Installation is quite easy: copy the contents of the Classes folder to any location
044: in your application required.
045:
046: Example:
047:
048: If your web root folder is /var/www/ you may want to create a subfolder called
049: /var/www/Classes/ and copy the files into that folder so you end up with files:
050:
051: /var/www/Classes/PHPExcel.php
052: /var/www/Classes/PHPExcel/Calculation.php
053: /var/www/Classes/PHPExcel/Cell.php
054: ...
055:
056:
057:
058: Getting started
059: ---------------
060:
061: A good way to get started is to run some of the tests included in the download.
062: Copy the "Examples" folder next to your "Classes" folder from above so you end up with:
063:
064: /var/www/Examples/01simple.php
065: /var/www/Examples/02types.php
066: ...
067:
068: Start running the test by pointing your browser to the test scripts:
069:
070: http://example.com/Examples/01simple.php
071: http://example.com/Examples/02types.php
072: ...
073:
074: Note: It may be necessary to modify the include/require statements at the beginning of
075: each of the test scripts if your "Classes" folder from above is named differently.
076: