php导出excel2007实例,PHPExcel精简版与导入导出案例
【實(shí)例簡(jiǎn)介】
PHPexcel1.7.7精簡(jiǎn)版 只包含導(dǎo)入與導(dǎo)出功能;詳細(xì)我已寫(xiě)好了例子,文檔中也有包含,詳細(xì)介紹見(jiàn)我博客http://blog.csdn.net/slyjit/article/details/71194253
【實(shí)例截圖】
【核心代碼】
PHPExcel
├── PHPExcel
│?? ├── Autoloader.php
│?? ├── CachedObjectStorage
│?? │?? ├── CacheBase.php
│?? │?? ├── ICache.php
│?? │?? └── Memory.php
│?? ├── CachedObjectStorageFactory.php
│?? ├── Calculation
│?? │?? ├── Function.php
│?? │?? ├── Functions.php
│?? │?? ├── Logical.php
│?? │?? └── MathTrig.php
│?? ├── Calculation.php
│?? ├── Cell
│?? │?? ├── DataType.php
│?? │?? ├── DefaultValueBinder.php
│?? │?? ├── Hyperlink.php
│?? │?? └── IValueBinder.php
│?? ├── Cell.php
│?? ├── Chart.php
│?? ├── Comment.php
│?? ├── DocumentProperties.php
│?? ├── DocumentSecurity.php
│?? ├── HashTable.php
│?? ├── IComparable.php
│?? ├── IOFactory.php
│?? ├── NamedRange.php
│?? ├── Reader
│?? │?? ├── CSV.php
│?? │?? ├── DefaultReadFilter.php
│?? │?? ├── Excel2003XML.php
│?? │?? ├── Excel2007
│?? │?? │?? ├── Chart.php
│?? │?? │?? └── Theme.php
│?? │?? ├── Excel2007.php
│?? │?? ├── Excel5
│?? │?? │?? └── Escher.php
│?? │?? ├── Excel5.php
│?? │?? ├── Gnumeric.php
│?? │?? ├── IReader.php
│?? │?? ├── IReadFilter.php
│?? │?? ├── OOCalc.php
│?? │?? └── SYLK.php
│?? ├── ReferenceHelper.php
│?? ├── RichText
│?? │?? ├── ITextElement.php
│?? │?? ├── Run.php
│?? │?? └── TextElement.php
│?? ├── RichText.php
│?? ├── Settings.php
│?? ├── Shared
│?? │?? ├── CodePage.php
│?? │?? ├── Date.php
│?? │?? ├── Drawing.php
│?? │?? ├── Escher
│?? │?? │?? ├── DgContainer
│?? │?? │?? │?? ├── SpgrContainer
│?? │?? │?? │?? │?? └── SpContainer.php
│?? │?? │?? │?? └── SpgrContainer.php
│?? │?? │?? ├── DgContainer.php
│?? │?? │?? ├── DggContainer
│?? │?? │?? │?? ├── BstoreContainer
│?? │?? │?? │?? │?? ├── BSE
│?? │?? │?? │?? │?? │?? └── Blip.php
│?? │?? │?? │?? │?? └── BSE.php
│?? │?? │?? │?? └── BstoreContainer.php
│?? │?? │?? └── DggContainer.php
│?? │?? ├── Escher.php
│?? │?? ├── Excel5.php
│?? │?? ├── File.php
│?? │?? ├── Font.php
│?? │?? ├── JAMA
│?? │?? │?? └── Matrix.php
│?? │?? ├── OLE
│?? │?? │?? ├── ChainedBlockStream.php
│?? │?? │?? ├── PPS
│?? │?? │?? │?? ├── File.php
│?? │?? │?? │?? └── Root.php
│?? │?? │?? └── PPS.php
│?? │?? ├── OLE.php
│?? │?? ├── OLERead.php
│?? │?? ├── PasswordHasher.php
│?? │?? ├── String.php
│?? │?? ├── XMLWriter.php
│?? │?? └── ZipStreamWrapper.php
│?? ├── Style
│?? │?? ├── Alignment.php
│?? │?? ├── Border.php
│?? │?? ├── Borders.php
│?? │?? ├── Color.php
│?? │?? ├── Conditional.php
│?? │?? ├── Fill.php
│?? │?? ├── Font.php
│?? │?? ├── NumberFormat.php
│?? │?? └── Protection.php
│?? ├── Style.php
│?? ├── Worksheet
│?? │?? ├── BaseDrawing.php
│?? │?? ├── ColumnDimension.php
│?? │?? ├── Drawing
│?? │?? │?? └── Shadow.php
│?? │?? ├── Drawing.php
│?? │?? ├── HeaderFooter.php
│?? │?? ├── MemoryDrawing.php
│?? │?? ├── PageMargins.php
│?? │?? ├── PageSetup.php
│?? │?? ├── Protection.php
│?? │?? ├── RowDimension.php
│?? │?? └── SheetView.php
│?? ├── WorksheetIterator.php
│?? ├── Worksheet.php
│?? └── Writer
│?? ├── CSV.php
│?? ├── Excel2007
│?? │?? ├── Chart.php
│?? │?? ├── Comments.php
│?? │?? ├── ContentTypes.php
│?? │?? ├── DocProps.php
│?? │?? ├── Drawing.php
│?? │?? ├── Rels.php
│?? │?? ├── StringTable.php
│?? │?? ├── Style.php
│?? │?? ├── Theme.php
│?? │?? ├── Workbook.php
│?? │?? ├── Worksheet.php
│?? │?? └── WriterPart.php
│?? ├── Excel2007.php
│?? ├── Excel5
│?? │?? ├── BIFFwriter.php
│?? │?? ├── Escher.php
│?? │?? ├── Font.php
│?? │?? ├── Parser.php
│?? │?? ├── Workbook.php
│?? │?? ├── Worksheet.php
│?? │?? └── Xf.php
│?? ├── Excel5.php
│?? ├── HTML.php
│?? ├── IWriter.php
│?? └── PDF.php
├── PHPExcel.php
├── read.php
├── write.php
├── write.xlsx
├── xabcd.xls
└── xabc.xlsx
24 directories, 121 files
總結(jié)
以上是生活随笔為你收集整理的php导出excel2007实例,PHPExcel精简版与导入导出案例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 怎么测并发 PHP,PHP接口并发测试的
- 下一篇: 二手电动车没有合格证?