最新服务器上的版本,以后用这个
wangzhenxin
2023-11-19 bc164b8bdbfbdf1d8229a5ced6b08d7cb8db7361
commit | author | age
2207d6 1 # PHPExcel Developer Documentation
W 2
3
4 ## Prerequisites, Installation, FAQ and Links
5
6 ### Software requirements
7
8 The following software is required to develop using PHPExcel:
9
10  - PHP version 5.2.0 or newer
11  - PHP extension php_zip enabled [^phpzip_footnote]
12  - PHP extension php_xml enabled
13  - PHP extension php_gd2 enabled (if not compiled in)
14
15
16 ### Installation instructions
17
18 Installation is quite easy: copy the contents of the Classes folder to any location within your application source directories.
19
20 *Example:*
21
22 If your web root folder is /var/www/ you may want to create a subfolder called /var/www/Classes/ and copy the files into that folder so you end up with files:
23
24     /var/www/Classes/PHPExcel.php  
25     /var/www/Classes/PHPExcel/Calculation.php  
26     /var/www/Classes/PHPExcel/Cell.php  
27     ...  
28
29
30 ### Getting started
31
32 A good way to get started is to run some of the tests included in the download.  
33 Copy the "Examples" folder next to your "Classes" folder from above so you end up with:
34
35     /var/www/Examples/01simple.php  
36     /var/www/Examples/02types.php  
37     ...  
38
39 Start running the tests by pointing your browser to the test scripts:
40
41 http://example.com/Tests/01simple.php  
42 http://example.com/Tests/02types.php  
43 ...  
44
45 **Note:** It may be necessary to modify the include/require statements at the beginning of each of the test scripts if your "Classes" folder from above is named differently.
46
47
48 ### Useful links and tools
49
50 There are some links and tools which are very useful when developing using PHPExcel. Please refer to the [PHPExcel CodePlex pages][2] for an update version of the list below.
51
52 #### OpenXML / SpreadsheetML
53
54  - __File format documentation__  
55 [http://www.ecma-international.org/news/TC45_current_work/TC45_available_docs.htm][3]
56  - __OpenXML Explained e-book__  
57 [http://openxmldeveloper.org/articles/1970.aspx][4] 
58  - __Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats__  
59 [http://www.microsoft.com/downloads/details.aspx?familyid=941b3470-3ae9-4aee-8f43-c6bb74cd1466&displaylang=en][5]
60  - __OpenXML Package Explorer__  
61 [http://www.codeplex.com/PackageExplorer/][6]
62
63
64 ### Frequently asked questions
65
66 The up-to-date F.A.Q. page for PHPExcel can be found on [http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements][7].
67
68 ##### There seems to be a problem with character encoding...
69
70 It is necessary to use UTF-8 encoding for all texts in PHPExcel. If the script uses different encoding then you can convert those texts with PHP's iconv() or mb_convert_encoding() functions.
71
72 ##### PHP complains about ZipArchive not being found
73
74 Make sure you meet all requirements, especially php_zip extension should be enabled.
75
76 The ZipArchive class is only required when reading or writing formats that use Zip compression (Excel2007 and OOCalc). Since version 1.7.6 the PCLZip library has been bundled with PHPExcel as an alternative to the ZipArchive class.
77
78 This can be enabled by calling:
79 ```php
80 PHPExcel_Settings::setZipClass(PHPExcel_Settings::PCLZIP);
81 ```
82 *before* calling the save method of the Excel2007 Writer.
83
84 You can revert to using ZipArchive by calling:
85 ```php
86 PHPExcel_Settings::setZipClass(PHPExcel_Settings::ZIPARCHIVE);
87 ```
88 At present, this only allows you to write Excel2007 files without the need for ZipArchive (not to read Excel2007 or OOCalc)
89
90 ##### Excel 2007 cannot open the file generated by PHPExcel_Writer_2007 on Windows
91
92 "Excel found unreadable content in '*.xlsx'. Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes."
93
94 Some older versions of the 5.2.x php_zip extension on Windows contain an error when creating ZIP files. The version that can be found on [http://snaps.php.net/win32/php5.2-win32-latest.zip][8] should work at all times.
95
96 Alternatively, upgrading to at least PHP 5.2.9 should solve the problem.
97
98 If you can't locate a clean copy of ZipArchive, then you can use the PCLZip library as an alternative when writing Excel2007 files, as described above.
99
100 ##### Fatal error: Allowed memory size of xxx bytes exhausted (tried to allocate yyy bytes) in zzz on line aaa
101
102 PHPExcel holds an "in memory" representation of a spreadsheet, so it is susceptible to PHP's memory limitations. The memory made available to PHP can be increased by editing the value of the memory_limit directive in your php.ini file, or by using ini_set('memory_limit', '128M') within your code (ISP permitting).
103
104 Some Readers and Writers are faster than others, and they also use differing amounts of memory. You can find some indication of the relative performance and memory usage for the different Readers and Writers, over the different versions of PHPExcel, on the [discussion board][9].
105
106 If you've already increased memory to a maximum, or can't change your memory limit, then [this discussion][10] on the board describes some of the methods that can be applied to reduce the memory usage of your scripts using PHPExcel.
107
108 ##### Protection on my worksheet is not working?
109
110 When you make use of any of the worksheet protection features (e.g. cell range protection, prohibiting deleting rows, ...), make sure you enable worksheet security. This can for example be done like this:
111 ```php
112 $objPHPExcel->getActiveSheet()->getProtection()->setSheet(true);
113 ```
114
115 ##### Feature X is not working with PHPExcel_Reader_Y / PHPExcel_Writer_Z
116
117 Not all features of PHPExcel are implemented in all of the Reader / Writer classes. This is mostly due to underlying libraries not supporting a specific feature or not having implemented a specific feature.
118
119 For example autofilter is not implemented in PEAR Spreadsheet_Excel_writer, which is the base of our Excel5 writer.
120
121 We are slowly building up a list of features, together with the different readers and writers that support them, in the "Functionality Cross-Reference.xls" file in the /Documentation folder.
122
123 ##### Formulas don't seem to be calculated in Excel2003 using compatibility pack?
124
125 This is normal behaviour of the compatibility pack, Excel2007 displays this correctly. Use PHPExcel_Writer_Excel5 if you really need calculated values, or force recalculation in Excel2003.
126
127 ##### Setting column width is not 100% accurate
128
129 Trying to set column width, I experience one problem. When I open the file in Excel, the actual width is 0.71 less than it should be.
130
131 The short answer is that PHPExcel uses a measure where padding is included. See section: "Setting a column's width" for more details.
132
133 ##### How do I use PHPExcel with my framework
134
135  - There are some instructions for using PHPExcel with Joomla on the [Joomla message board][11]
136  - A page of advice on using [PHPExcel in the Yii framework][12]
137  - [The Bakery][13] has some helper classes for reading and writing with PHPExcel within CakePHP
138  - Integrating [PHPExcel into Kohana 3][14] and [?????????? PHPExcel ? Kohana Framework][15]
139  - Using [PHPExcel with Typo3][16]
140
141 ##### Joomla Autoloader interferes with PHPExcel Autoloader
142
143 Thanks to peterrlynch for the following advice on resolving issues between the [PHPExcel autoloader and Joomla Autoloader][17]
144
145
146 #### Tutorials
147
148  - __English PHPExcel tutorial__  
149    [http://openxmldeveloper.org][18]
150  - __French PHPExcel tutorial__  
151    [http://g-ernaelsten.developpez.com/tutoriels/excel2007/][19]
152  - __A Japanese-language introduction to PHPExcel__  
153   [http://journal.mycom.co.jp/articles/2009/03/06/phpexcel/index.html][21]
154
155
156   [2]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=Documents&referringTitle=Home
157   [3]: http://www.ecma-international.org/news/TC45_current_work/TC45_available_docs.htm
158   [4]: http://openxmldeveloper.org/articles/1970.aspx
159   [5]: http://www.microsoft.com/downloads/details.aspx?familyid=941b3470-3ae9-4aee-8f43-c6bb74cd1466&displaylang=en
160   [6]: http://www.codeplex.com/PackageExplorer/
161   [7]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements
162   [8]: http://snaps.php.net/win32/php5.2-win32-latest.zip
163   [9]: http://phpexcel.codeplex.com/Thread/View.aspx?ThreadId=234150
164   [10]: http://phpexcel.codeplex.com/Thread/View.aspx?ThreadId=242712
165   [11]: http://http:/forum.joomla.org/viewtopic.php?f=304&t=433060
166   [12]: http://www.yiiframework.com/wiki/101/how-to-use-phpexcel-external-library-with-yii/
167   [13]: http://bakery.cakephp.org/articles/melgior/2010/01/26/simple-excel-spreadsheet-helper
168   [14]: http://www.flynsarmy.com/2010/07/phpexcel-module-for-kohana-3/
169   [15]: http://szpargalki.blogspot.com/2011/02/phpexcel-kohana-framework.html
170   [16]: http://typo3.org/documentation/document-library/extension-manuals/phpexcel_library/1.1.1/view/toc/0/
171   [17]: http://phpexcel.codeplex.com/discussions/211925
172   [18]: http://openxmldeveloper.org
173   [19]: http://g-ernaelsten.developpez.com/tutoriels/excel2007/
174   [20]: http://www.web-junior.net/sozdanie-excel-fajjlov-s-pomoshhyu-phpexcel/
175   [21]: http://journal.mycom.co.jp/articles/2009/03/06/phpexcel/index.html
176
177
178 [^phpzip_footnote]: __php_zip__ is only needed by __PHPExcel_Reader_Excel2007__, __PHPExcel_Writer_Excel2007__ and __PHPExcel_Reader_OOCalc__. In other words, if you need PHPExcel to handle .xlsx or .ods files you will need the zip extension, but otherwise not.<br />You can remove this dependency for writing Excel2007 files (though not yet for reading) by using the PCLZip library that is bundled with PHPExcel. See the FAQ section of this document for details about this. PCLZip does have a dependency on PHP's zlib extension being enabled.
179