实例介绍
【实例简介】PHPExcel包 自己写的phpexcel和CI框架整合的类
最近项目中用到excel的导入和导出,研究了下PHPExcel的使用,真的是很好用也很强大,就是有些庞大,有时间的话精简一下。因为项目用的CI框架,所以自己写了一个整合类,用于在CI中是用PHPExcel
文件清单
└── ci_excel
├── application
│ ├── cache
│ │ └── index.html
│ ├── config
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── profiler.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ └── user_agents.php
│ ├── controllers
│ │ ├── index.html
│ │ ├── test_excel.php
│ │ └── welcome.php
│ ├── core
│ │ └── index.html
│ ├── errors
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── helpers
│ │ └── index.html
│ ├── hooks
│ │ └── index.html
│ ├── index.html
│ ├── language
│ │ └── english
│ │ └── index.html
│ ├── libraries
│ │ ├── ExcelIO.php
│ │ ├── index.html
│ │ ├── PHPExcel
│ │ │ ├── Autoloader.php
│ │ │ ├── CachedObjectStorage
│ │ │ │ ├── APC.php
│ │ │ │ ├── CacheBase.php
│ │ │ │ ├── DiscISAM.php
│ │ │ │ ├── ICache.php
│ │ │ │ ├── Igbinary.php
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── MemoryGZip.php
│ │ │ │ ├── Memory.php
│ │ │ │ ├── MemorySerialized.php
│ │ │ │ ├── PHPTemp.php
│ │ │ │ ├── SQLite3.php
│ │ │ │ ├── SQLite.php
│ │ │ │ └── Wincache.php
│ │ │ ├── CachedObjectStorageFactory.php
│ │ │ ├── Calculation
│ │ │ │ ├── Database.php
│ │ │ │ ├── DateTime.php
│ │ │ │ ├── Engineering.php
│ │ │ │ ├── ExceptionHandler.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Financial.php
│ │ │ │ ├── FormulaParser.php
│ │ │ │ ├── FormulaToken.php
│ │ │ │ ├── functionlist.txt
│ │ │ │ ├── Function.php
│ │ │ │ ├── Functions.php
│ │ │ │ ├── Logical.php
│ │ │ │ ├── LookupRef.php
│ │ │ │ ├── MathTrig.php
│ │ │ │ ├── Statistical.php
│ │ │ │ └── TextData.php
│ │ │ ├── Calculation.php
│ │ │ ├── Cell
│ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ ├── DataType.php
│ │ │ │ ├── DataValidation.php
│ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ ├── Hyperlink.php
│ │ │ │ └── IValueBinder.php
│ │ │ ├── Cell.php
│ │ │ ├── Chart
│ │ │ │ ├── DataSeries.php
│ │ │ │ ├── DataSeriesValues.php
│ │ │ │ ├── Layout.php
│ │ │ │ ├── Legend.php
│ │ │ │ ├── PlotArea.php
│ │ │ │ ├── Renderer
│ │ │ │ │ ├── jpgraph.php
│ │ │ │ │ └── PHP Charting Libraries.txt
│ │ │ │ └── Title.php
│ │ │ ├── Chart.php
│ │ │ ├── Comment.php
│ │ │ ├── DocumentProperties.php
│ │ │ ├── DocumentSecurity.php
│ │ │ ├── HashTable.php
│ │ │ ├── IComparable.php
│ │ │ ├── IOFactory.php
│ │ │ ├── locale
│ │ │ │ ├── cs
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── da
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── de
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── en
│ │ │ │ │ └── uk
│ │ │ │ │ └── config
│ │ │ │ ├── es
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── fi
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── fr
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── hu
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── it
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── nl
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── no
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── pl
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── pt
│ │ │ │ │ ├── br
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── ru
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ └── sv
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ ├── 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
│ │ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ │ ├── CholeskyDecomposition.php
│ │ │ │ │ ├── docs
│ │ │ │ │ │ ├── docs.php
│ │ │ │ │ │ ├── download.php
│ │ │ │ │ │ ├── example.php
│ │ │ │ │ │ ├── includes
│ │ │ │ │ │ │ ├── credits.php
│ │ │ │ │ │ │ ├── footer.php
│ │ │ │ │ │ │ ├── header.php
│ │ │ │ │ │ │ └── navbar.php
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ ├── package.php
│ │ │ │ │ │ └── test.php
│ │ │ │ │ ├── EigenvalueDecomposition.php
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── benchmark.php
│ │ │ │ │ │ ├── LagrangeInterpolation2.php
│ │ │ │ │ │ ├── LagrangeInterpolation.php
│ │ │ │ │ │ ├── LevenbergMarquardt.php
│ │ │ │ │ │ ├── LMQuadTest.php
│ │ │ │ │ │ ├── MagicSquareExample.php
│ │ │ │ │ │ ├── polyfit.php
│ │ │ │ │ │ ├── Stats.php
│ │ │ │ │ │ └── tile.php
│ │ │ │ │ ├── LUDecomposition.php
│ │ │ │ │ ├── Matrix.php
│ │ │ │ │ ├── QRDecomposition.php
│ │ │ │ │ ├── SingularValueDecomposition.php
│ │ │ │ │ ├── tests
│ │ │ │ │ │ └── TestMatrix.php
│ │ │ │ │ └── utils
│ │ │ │ │ ├── Error.php
│ │ │ │ │ └── Maths.php
│ │ │ │ ├── OLE
│ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ ├── PPS
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Root.php
│ │ │ │ │ └── PPS.php
│ │ │ │ ├── OLE.php
│ │ │ │ ├── OLERead.php
│ │ │ │ ├── PasswordHasher.php
│ │ │ │ ├── PCLZip
│ │ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ │ ├── pclzip.lib.php
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── PDF
│ │ │ │ │ ├── 2dbarcodes.php
│ │ │ │ │ ├── barcodes.php
│ │ │ │ │ ├── cache
│ │ │ │ │ │ ├── chapter_demo_1.txt
│ │ │ │ │ │ ├── chapter_demo_2.txt
│ │ │ │ │ │ ├── table_data_demo.txt
│ │ │ │ │ │ └── utf8test.txt
│ │ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ │ ├── config
│ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ ├── bra.php
│ │ │ │ │ │ │ ├── eng.php
│ │ │ │ │ │ │ ├── ger.php
│ │ │ │ │ │ │ └── ita.php
│ │ │ │ │ │ ├── tcpdf_config_alt.php
│ │ │ │ │ │ └── tcpdf_config.php
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── almohanad.ctg.z
│ │ │ │ │ │ ├── almohanad.php
│ │ │ │ │ │ ├── almohanad.z
│ │ │ │ │ │ ├── arialunicid0-chinese-simplified.php
│ │ │ │ │ │ ├── arialunicid0-chinese-traditional.php
│ │ │ │ │ │ ├── arialunicid0-japanese.php
│ │ │ │ │ │ ├── arialunicid0-korean.php
│ │ │ │ │ │ ├── arialunicid0.php
│ │ │ │ │ │ ├── chinese.php
│ │ │ │ │ │ ├── courier.php
│ │ │ │ │ │ ├── dejavu-fonts-ttf-2.30
│ │ │ │ │ │ │ ├── AUTHORS
│ │ │ │ │ │ │ ├── BUGS
│ │ │ │ │ │ │ ├── langcover.txt
│ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ ├── NEWS
│ │ │ │ │ │ │ ├── README
│ │ │ │ │ │ │ ├── status.txt
│ │ │ │ │ │ │ └── unicover.txt
│ │ │ │ │ │ ├── dejavusansb.ctg.z
│ │ │ │ │ │ ├── dejavusansbi.ctg.z
│ │ │ │ │ │ ├── dejavusansbi.php
│ │ │ │ │ │ ├── dejavusansbi.z
│ │ │ │ │ │ ├── dejavusansb.php
│ │ │ │ │ │ ├── dejavusansb.z
│ │ │ │ │ │ ├── dejavusanscondensedb.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedbi.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedbi.php
│ │ │ │ │ │ ├── dejavusanscondensedbi.z
│ │ │ │ │ │ ├── dejavusanscondensedb.php
│ │ │ │ │ │ ├── dejavusanscondensedb.z
│ │ │ │ │ │ ├── dejavusanscondensed.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedi.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedi.php
│ │ │ │ │ │ ├── dejavusanscondensedi.z
│ │ │ │ │ │ ├── dejavusanscondensed.php
│ │ │ │ │ │ ├── dejavusanscondensed.z
│ │ │ │ │ │ ├── dejavusans.ctg.z
│ │ │ │ │ │ ├── dejavusansi.ctg.z
│ │ │ │ │ │ ├── dejavusansi.php
│ │ │ │ │ │ ├── dejavusansi.z
│ │ │ │ │ │ ├── dejavusansmonob.ctg.z
│ │ │ │ │ │ ├── dejavusansmonobi.ctg.z
│ │ │ │ │ │ ├── dejavusansmonobi.php
│ │ │ │ │ │ ├── dejavusansmonobi.z
│ │ │ │ │ │ ├── dejavusansmonob.php
│ │ │ │ │ │ ├── dejavusansmonob.z
│ │ │ │ │ │ ├── dejavusansmono.ctg.z
│ │ │ │ │ │ ├── dejavusansmonoi.ctg.z
│ │ │ │ │ │ ├── dejavusansmonoi.php
│ │ │ │ │ │ ├── dejavusansmonoi.z
│ │ │ │ │ │ ├── dejavusansmono.php
│ │ │ │ │ │ ├── dejavusansmono.z
│ │ │ │ │ │ ├── dejavusans.php
│ │ │ │ │ │ ├── dejavusans.z
│ │ │ │ │ │ ├── dejavuserifb.ctg.z
│ │ │ │ │ │ ├── dejavuserifbi.ctg.z
│ │ │ │ │ │ ├── dejavuserifbi.php
│ │ │ │ │ │ ├── dejavuserifbi.z
│ │ │ │ │ │ ├── dejavuserifb.php
│ │ │ │ │ │ ├── dejavuserifb.z
│ │ │ │ │ │ ├── dejavuserifcondensedb.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedbi.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedbi.php
│ │ │ │ │ │ ├── dejavuserifcondensedbi.z
│ │ │ │ │ │ ├── dejavuserifcondensedb.php
│ │ │ │ │ │ ├── dejavuserifcondensedb.z
│ │ │ │ │ │ ├── dejavuserifcondensed.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedi.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedi.php
│ │ │ │ │ │ ├── dejavuserifcondensedi.z
│ │ │ │ │ │ ├── dejavuserifcondensed.php
│ │ │ │ │ │ ├── dejavuserifcondensed.z
│ │ │ │ │ │ ├── dejavuserif.ctg.z
│ │ │ │ │ │ ├── dejavuserifi.ctg.z
│ │ │ │ │ │ ├── dejavuserifi.php
│ │ │ │ │ │ ├── dejavuserifi.z
│ │ │ │ │ │ ├── dejavuserif.php
│ │ │ │ │ │ ├── dejavuserif.z
│ │ │ │ │ │ ├── freefont-20090104
│ │ │ │ │ │ │ ├── AUTHORS
│ │ │ │ │ │ │ ├── ChangeLog
│ │ │ │ │ │ │ ├── COPYING
│ │ │ │ │ │ │ ├── CREDITS
│ │ │ │ │ │ │ ├── INSTALL
│ │ │ │ │ │ │ └── README
│ │ │ │ │ │ ├── freemonob.ctg.z
│ │ │ │ │ │ ├── freemonobi.ctg.z
│ │ │ │ │ │ ├── freemonobi.php
│ │ │ │ │ │ ├── freemonobi.z
│ │ │ │ │ │ ├── freemonob.php
│ │ │ │ │ │ ├── freemonob.z
│ │ │ │ │ │ ├── freemono.ctg.z
│ │ │ │ │ │ ├── freemonoi.ctg.z
│ │ │ │ │ │ ├── freemonoi.php
│ │ │ │ │ │ ├── freemonoi.z
│ │ │ │ │ │ ├── freemono.php
│ │ │ │ │ │ ├── freemono.z
│ │ │ │ │ │ ├── freesansb.ctg.z
│ │ │ │ │ │ ├── freesansbi.ctg.z
│ │ │ │ │ │ ├── freesansbi.php
│ │ │ │ │ │ ├── freesansbi.z
│ │ │ │ │ │ ├── freesansb.php
│ │ │ │ │ │ ├── freesansb.z
│ │ │ │ │ │ ├── freesans.ctg.z
│ │ │ │ │ │ ├── freesansi.ctg.z
│ │ │ │ │ │ ├── freesansi.php
│ │ │ │ │ │ ├── freesansi.z
│ │ │ │ │ │ ├── freesans.php
│ │ │ │ │ │ ├── freesans.z
│ │ │ │ │ │ ├── freeserifb.ctg.z
│ │ │ │ │ │ ├── freeserifbi.ctg.z
│ │ │ │ │ │ ├── freeserifbi.php
│ │ │ │ │ │ ├── freeserifbi.z
│ │ │ │ │ │ ├── freeserifb.php
│ │ │ │ │ │ ├── freeserifb.z
│ │ │ │ │ │ ├── freeserif.ctg.z
│ │ │ │ │ │ ├── freeserifi.ctg.z
│ │ │ │ │ │ ├── freeserifi.php
│ │ │ │ │ │ ├── freeserifi.z
│ │ │ │ │ │ ├── freeserif.php
│ │ │ │ │ │ ├── freeserif.z
│ │ │ │ │ │ ├── helveticabi.php
│ │ │ │ │ │ ├── helveticab.php
│ │ │ │ │ │ ├── helveticai.php
│ │ │ │ │ │ ├── helvetica.php
│ │ │ │ │ │ ├── hysmyeongjostdmedium.php
│ │ │ │ │ │ ├── kozgopromedium.php
│ │ │ │ │ │ ├── kozminproregular.php
│ │ │ │ │ │ ├── msungstdlight.php
│ │ │ │ │ │ ├── README.TXT
│ │ │ │ │ │ ├── stsongstdlight.php
│ │ │ │ │ │ ├── symbol.php
│ │ │ │ │ │ ├── timesbi.php
│ │ │ │ │ │ ├── timesb.php
│ │ │ │ │ │ ├── timesi.php
│ │ │ │ │ │ ├── times.php
│ │ │ │ │ │ ├── uni2cid_ac15.php
│ │ │ │ │ │ ├── uni2cid_ag15.php
│ │ │ │ │ │ ├── uni2cid_aj16.php
│ │ │ │ │ │ ├── uni2cid_ak12.php
│ │ │ │ │ │ ├── utils
│ │ │ │ │ │ │ ├── enc
│ │ │ │ │ │ │ │ ├── cp1250.map
│ │ │ │ │ │ │ │ ├── cp1251.map
│ │ │ │ │ │ │ │ ├── cp1252.map
│ │ │ │ │ │ │ │ ├── cp1253.map
│ │ │ │ │ │ │ │ ├── cp1254.map
│ │ │ │ │ │ │ │ ├── cp1255.map
│ │ │ │ │ │ │ │ ├── cp1257.map
│ │ │ │ │ │ │ │ ├── cp1258.map
│ │ │ │ │ │ │ │ ├── cp874.map
│ │ │ │ │ │ │ │ ├── iso-8859-11.map
│ │ │ │ │ │ │ │ ├── iso-8859-15.map
│ │ │ │ │ │ │ │ ├── iso-8859-16.map
│ │ │ │ │ │ │ │ ├── iso-8859-1.map
│ │ │ │ │ │ │ │ ├── iso-8859-2.map
│ │ │ │ │ │ │ │ ├── iso-8859-4.map
│ │ │ │ │ │ │ │ ├── iso-8859-5.map
│ │ │ │ │ │ │ │ ├── iso-8859-7.map
│ │ │ │ │ │ │ │ ├── iso-8859-9.map
│ │ │ │ │ │ │ │ ├── koi8-r.map
│ │ │ │ │ │ │ │ └── koi8-u.map
│ │ │ │ │ │ │ ├── freetype6.dll
│ │ │ │ │ │ │ ├── makeallttffonts.php
│ │ │ │ │ │ │ ├── makefont.php
│ │ │ │ │ │ │ ├── pfm2afm
│ │ │ │ │ │ │ ├── pfm2afm.exe
│ │ │ │ │ │ │ ├── README.TXT
│ │ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ │ ├── pfm2afm-src.tar.gz
│ │ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ │ └── ttf2ufm-src.tar.gz
│ │ │ │ │ │ │ ├── ttf2ufm
│ │ │ │ │ │ │ ├── ttf2ufm.exe
│ │ │ │ │ │ │ └── zlib1.dll
│ │ │ │ │ │ ├── zapfdingbats.php
│ │ │ │ │ │ ├── ZarBold.ctg.z
│ │ │ │ │ │ ├── zarbold.php
│ │ │ │ │ │ └── ZarBold.z
│ │ │ │ │ ├── htmlcolors.php
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── alpha.png
│ │ │ │ │ │ ├── _blank.png
│ │ │ │ │ │ ├── bug.eps
│ │ │ │ │ │ ├── image_demo.jpg
│ │ │ │ │ │ ├── image_with_alpha.png
│ │ │ │ │ │ ├── img.png
│ │ │ │ │ │ ├── logo_example.gif
│ │ │ │ │ │ ├── logo_example.jpg
│ │ │ │ │ │ ├── logo_example.png
│ │ │ │ │ │ ├── pelican.ai
│ │ │ │ │ │ ├── tcpdf_cell.png
│ │ │ │ │ │ ├── tcpdf_logo.jpg
│ │ │ │ │ │ ├── tcpdf_signature.png
│ │ │ │ │ │ ├── testsvg.svg
│ │ │ │ │ │ ├── tiger.ai
│ │ │ │ │ │ └── tux.svg
│ │ │ │ │ ├── LICENSE.TXT
│ │ │ │ │ ├── pdf417.php
│ │ │ │ │ ├── qrcode.php
│ │ │ │ │ ├── README.TXT
│ │ │ │ │ ├── tcpdf.crt
│ │ │ │ │ ├── tcpdf.fdf
│ │ │ │ │ ├── tcpdf.p12
│ │ │ │ │ ├── tcpdf.php
│ │ │ │ │ └── unicode_data.php
│ │ │ │ ├── String.php
│ │ │ │ ├── trend
│ │ │ │ │ ├── bestFitClass.php
│ │ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ │ ├── linearBestFitClass.php
│ │ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ │ ├── powerBestFitClass.php
│ │ │ │ │ └── trendClass.php
│ │ │ │ ├── XMLWriter.php
│ │ │ │ ├── ZipArchive.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
│ │ │ │ ├── CellIterator.php
│ │ │ │ ├── ColumnDimension.php
│ │ │ │ ├── Drawing
│ │ │ │ │ └── Shadow.php
│ │ │ │ ├── Drawing.php
│ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ ├── HeaderFooter.php
│ │ │ │ ├── MemoryDrawing.php
│ │ │ │ ├── PageMargins.php
│ │ │ │ ├── PageSetup.php
│ │ │ │ ├── Protection.php
│ │ │ │ ├── RowDimension.php
│ │ │ │ ├── RowIterator.php
│ │ │ │ ├── Row.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
│ ├── logs
│ │ └── index.html
│ ├── models
│ │ └── index.html
│ ├── third_party
│ │ └── index.html
│ └── views
│ ├── index.html
│ └── welcome_message.php
├── index.php
├── license.txt
├── system
│ ├── core
│ │ ├── Benchmark.php
│ │ ├── CodeIgniter.php
│ │ ├── Common.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Exceptions.php
│ │ ├── Hooks.php
│ │ ├── index.html
│ │ ├── Input.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Model.php
│ │ ├── Output.php
│ │ ├── Router.php
│ │ ├── Security.php
│ │ ├── URI.php
│ │ └── Utf8.php
│ ├── database
│ │ ├── DB_active_rec.php
│ │ ├── DB_cache.php
│ │ ├── DB_driver.php
│ │ ├── DB_forge.php
│ │ ├── DB.php
│ │ ├── DB_result.php
│ │ ├── DB_utility.php
│ │ ├── drivers
│ │ │ ├── cubrid
│ │ │ │ ├── cubrid_driver.php
│ │ │ │ ├── cubrid_forge.php
│ │ │ │ ├── cubrid_result.php
│ │ │ │ ├── cubrid_utility.php
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── mssql
│ │ │ │ ├── index.html
│ │ │ │ ├── mssql_driver.php
│ │ │ │ ├── mssql_forge.php
│ │ │ │ ├── mssql_result.php
│ │ │ │ └── mssql_utility.php
│ │ │ ├── mysql
│ │ │ │ ├── index.html
│ │ │ │ ├── mysql_driver.php
│ │ │ │ ├── mysql_forge.php
│ │ │ │ ├── mysql_result.php
│ │ │ │ └── mysql_utility.php
│ │ │ ├── mysqli
│ │ │ │ ├── index.html
│ │ │ │ ├── mysqli_driver.php
│ │ │ │ ├── mysqli_forge.php
│ │ │ │ ├── mysqli_result.php
│ │ │ │ └── mysqli_utility.php
│ │ │ ├── oci8
│ │ │ │ ├── index.html
│ │ │ │ ├── oci8_driver.php
│ │ │ │ ├── oci8_forge.php
│ │ │ │ ├── oci8_result.php
│ │ │ │ └── oci8_utility.php
│ │ │ ├── odbc
│ │ │ │ ├── index.html
│ │ │ │ ├── odbc_driver.php
│ │ │ │ ├── odbc_forge.php
│ │ │ │ ├── odbc_result.php
│ │ │ │ └── odbc_utility.php
│ │ │ ├── pdo
│ │ │ │ ├── index.html
│ │ │ │ ├── pdo_driver.php
│ │ │ │ ├── pdo_forge.php
│ │ │ │ ├── pdo_result.php
│ │ │ │ └── pdo_utility.php
│ │ │ ├── postgre
│ │ │ │ ├── index.html
│ │ │ │ ├── postgre_driver.php
│ │ │ │ ├── postgre_forge.php
│ │ │ │ ├── postgre_result.php
│ │ │ │ └── postgre_utility.php
│ │ │ ├── sqlite
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlite_driver.php
│ │ │ │ ├── sqlite_forge.php
│ │ │ │ ├── sqlite_result.php
│ │ │ │ └── sqlite_utility.php
│ │ │ └── sqlsrv
│ │ │ ├── index.html
│ │ │ ├── sqlsrv_driver.php
│ │ │ ├── sqlsrv_forge.php
│ │ │ ├── sqlsrv_result.php
│ │ │ └── sqlsrv_utility.php
│ │ └── index.html
│ ├── fonts
│ │ ├── index.html
│ │ └── texb.ttf
│ ├── helpers
│ │ ├── array_helper.php
│ │ ├── captcha_helper.php
│ │ ├── cookie_helper.php
│ │ ├── date_helper.php
│ │ ├── directory_helper.php
│ │ ├── download_helper.php
│ │ ├── email_helper.php
│ │ ├── file_helper.php
│ │ ├── form_helper.php
│ │ ├── html_helper.php
│ │ ├── index.html
│ │ ├── inflector_helper.php
│ │ ├── language_helper.php
│ │ ├── number_helper.php
│ │ ├── path_helper.php
│ │ ├── security_helper.php
│ │ ├── smiley_helper.php
│ │ ├── string_helper.php
│ │ ├── text_helper.php
│ │ ├── typography_helper.php
│ │ ├── url_helper.php
│ │ └── xml_helper.php
│ ├── index.html
│ ├── language
│ │ ├── english
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ └── index.html
│ └── libraries
│ ├── Cache
│ │ ├── Cache.php
│ │ └── drivers
│ │ ├── Cache_apc.php
│ │ ├── Cache_dummy.php
│ │ ├── Cache_file.php
│ │ └── Cache_memcached.php
│ ├── Calendar.php
│ ├── Cart.php
│ ├── Driver.php
│ ├── Email.php
│ ├── Encrypt.php
│ ├── Form_validation.php
│ ├── Ftp.php
│ ├── Image_lib.php
│ ├── index.html
│ ├── javascript
│ │ └── Jquery.php
│ ├── Javascript.php
│ ├── Log.php
│ ├── Migration.php
│ ├── Pagination.php
│ ├── Parser.php
│ ├── Profiler.php
│ ├── Session.php
│ ├── Sha1.php
│ ├── Table.php
│ ├── Trackback.php
│ ├── Typography.php
│ ├── Unit_test.php
│ ├── Upload.php
│ ├── User_agent.php
│ ├── Xmlrpc.php
│ ├── Xmlrpcs.php
│ └── Zip.php
└── uploads
├── example1.xls
└── example1.xlsx
101 directories, 622 files
最近项目中用到excel的导入和导出,研究了下PHPExcel的使用,真的是很好用也很强大,就是有些庞大,有时间的话精简一下。因为项目用的CI框架,所以自己写了一个整合类,用于在CI中是用PHPExcel
【实例截图】
文件清单
└── ci_excel
├── application
│ ├── cache
│ │ └── index.html
│ ├── config
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── profiler.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ └── user_agents.php
│ ├── controllers
│ │ ├── index.html
│ │ ├── test_excel.php
│ │ └── welcome.php
│ ├── core
│ │ └── index.html
│ ├── errors
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── helpers
│ │ └── index.html
│ ├── hooks
│ │ └── index.html
│ ├── index.html
│ ├── language
│ │ └── english
│ │ └── index.html
│ ├── libraries
│ │ ├── ExcelIO.php
│ │ ├── index.html
│ │ ├── PHPExcel
│ │ │ ├── Autoloader.php
│ │ │ ├── CachedObjectStorage
│ │ │ │ ├── APC.php
│ │ │ │ ├── CacheBase.php
│ │ │ │ ├── DiscISAM.php
│ │ │ │ ├── ICache.php
│ │ │ │ ├── Igbinary.php
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── MemoryGZip.php
│ │ │ │ ├── Memory.php
│ │ │ │ ├── MemorySerialized.php
│ │ │ │ ├── PHPTemp.php
│ │ │ │ ├── SQLite3.php
│ │ │ │ ├── SQLite.php
│ │ │ │ └── Wincache.php
│ │ │ ├── CachedObjectStorageFactory.php
│ │ │ ├── Calculation
│ │ │ │ ├── Database.php
│ │ │ │ ├── DateTime.php
│ │ │ │ ├── Engineering.php
│ │ │ │ ├── ExceptionHandler.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Financial.php
│ │ │ │ ├── FormulaParser.php
│ │ │ │ ├── FormulaToken.php
│ │ │ │ ├── functionlist.txt
│ │ │ │ ├── Function.php
│ │ │ │ ├── Functions.php
│ │ │ │ ├── Logical.php
│ │ │ │ ├── LookupRef.php
│ │ │ │ ├── MathTrig.php
│ │ │ │ ├── Statistical.php
│ │ │ │ └── TextData.php
│ │ │ ├── Calculation.php
│ │ │ ├── Cell
│ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ ├── DataType.php
│ │ │ │ ├── DataValidation.php
│ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ ├── Hyperlink.php
│ │ │ │ └── IValueBinder.php
│ │ │ ├── Cell.php
│ │ │ ├── Chart
│ │ │ │ ├── DataSeries.php
│ │ │ │ ├── DataSeriesValues.php
│ │ │ │ ├── Layout.php
│ │ │ │ ├── Legend.php
│ │ │ │ ├── PlotArea.php
│ │ │ │ ├── Renderer
│ │ │ │ │ ├── jpgraph.php
│ │ │ │ │ └── PHP Charting Libraries.txt
│ │ │ │ └── Title.php
│ │ │ ├── Chart.php
│ │ │ ├── Comment.php
│ │ │ ├── DocumentProperties.php
│ │ │ ├── DocumentSecurity.php
│ │ │ ├── HashTable.php
│ │ │ ├── IComparable.php
│ │ │ ├── IOFactory.php
│ │ │ ├── locale
│ │ │ │ ├── cs
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── da
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── de
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── en
│ │ │ │ │ └── uk
│ │ │ │ │ └── config
│ │ │ │ ├── es
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── fi
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── fr
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── hu
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── it
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── nl
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── no
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── pl
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── pt
│ │ │ │ │ ├── br
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ └── functions
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── ru
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ └── sv
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ ├── 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
│ │ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ │ ├── CholeskyDecomposition.php
│ │ │ │ │ ├── docs
│ │ │ │ │ │ ├── docs.php
│ │ │ │ │ │ ├── download.php
│ │ │ │ │ │ ├── example.php
│ │ │ │ │ │ ├── includes
│ │ │ │ │ │ │ ├── credits.php
│ │ │ │ │ │ │ ├── footer.php
│ │ │ │ │ │ │ ├── header.php
│ │ │ │ │ │ │ └── navbar.php
│ │ │ │ │ │ ├── index.php
│ │ │ │ │ │ ├── package.php
│ │ │ │ │ │ └── test.php
│ │ │ │ │ ├── EigenvalueDecomposition.php
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── benchmark.php
│ │ │ │ │ │ ├── LagrangeInterpolation2.php
│ │ │ │ │ │ ├── LagrangeInterpolation.php
│ │ │ │ │ │ ├── LevenbergMarquardt.php
│ │ │ │ │ │ ├── LMQuadTest.php
│ │ │ │ │ │ ├── MagicSquareExample.php
│ │ │ │ │ │ ├── polyfit.php
│ │ │ │ │ │ ├── Stats.php
│ │ │ │ │ │ └── tile.php
│ │ │ │ │ ├── LUDecomposition.php
│ │ │ │ │ ├── Matrix.php
│ │ │ │ │ ├── QRDecomposition.php
│ │ │ │ │ ├── SingularValueDecomposition.php
│ │ │ │ │ ├── tests
│ │ │ │ │ │ └── TestMatrix.php
│ │ │ │ │ └── utils
│ │ │ │ │ ├── Error.php
│ │ │ │ │ └── Maths.php
│ │ │ │ ├── OLE
│ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ ├── PPS
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Root.php
│ │ │ │ │ └── PPS.php
│ │ │ │ ├── OLE.php
│ │ │ │ ├── OLERead.php
│ │ │ │ ├── PasswordHasher.php
│ │ │ │ ├── PCLZip
│ │ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ │ ├── pclzip.lib.php
│ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── 2dbarcodes.php
│ │ │ │ │ ├── barcodes.php
│ │ │ │ │ ├── cache
│ │ │ │ │ │ ├── chapter_demo_1.txt
│ │ │ │ │ │ ├── chapter_demo_2.txt
│ │ │ │ │ │ ├── table_data_demo.txt
│ │ │ │ │ │ └── utf8test.txt
│ │ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ │ ├── config
│ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ ├── bra.php
│ │ │ │ │ │ │ ├── eng.php
│ │ │ │ │ │ │ ├── ger.php
│ │ │ │ │ │ │ └── ita.php
│ │ │ │ │ │ ├── tcpdf_config_alt.php
│ │ │ │ │ │ └── tcpdf_config.php
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── almohanad.ctg.z
│ │ │ │ │ │ ├── almohanad.php
│ │ │ │ │ │ ├── almohanad.z
│ │ │ │ │ │ ├── arialunicid0-chinese-simplified.php
│ │ │ │ │ │ ├── arialunicid0-chinese-traditional.php
│ │ │ │ │ │ ├── arialunicid0-japanese.php
│ │ │ │ │ │ ├── arialunicid0-korean.php
│ │ │ │ │ │ ├── arialunicid0.php
│ │ │ │ │ │ ├── chinese.php
│ │ │ │ │ │ ├── courier.php
│ │ │ │ │ │ ├── dejavu-fonts-ttf-2.30
│ │ │ │ │ │ │ ├── AUTHORS
│ │ │ │ │ │ │ ├── BUGS
│ │ │ │ │ │ │ ├── langcover.txt
│ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ ├── NEWS
│ │ │ │ │ │ │ ├── README
│ │ │ │ │ │ │ ├── status.txt
│ │ │ │ │ │ │ └── unicover.txt
│ │ │ │ │ │ ├── dejavusansb.ctg.z
│ │ │ │ │ │ ├── dejavusansbi.ctg.z
│ │ │ │ │ │ ├── dejavusansbi.php
│ │ │ │ │ │ ├── dejavusansbi.z
│ │ │ │ │ │ ├── dejavusansb.php
│ │ │ │ │ │ ├── dejavusansb.z
│ │ │ │ │ │ ├── dejavusanscondensedb.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedbi.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedbi.php
│ │ │ │ │ │ ├── dejavusanscondensedbi.z
│ │ │ │ │ │ ├── dejavusanscondensedb.php
│ │ │ │ │ │ ├── dejavusanscondensedb.z
│ │ │ │ │ │ ├── dejavusanscondensed.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedi.ctg.z
│ │ │ │ │ │ ├── dejavusanscondensedi.php
│ │ │ │ │ │ ├── dejavusanscondensedi.z
│ │ │ │ │ │ ├── dejavusanscondensed.php
│ │ │ │ │ │ ├── dejavusanscondensed.z
│ │ │ │ │ │ ├── dejavusans.ctg.z
│ │ │ │ │ │ ├── dejavusansi.ctg.z
│ │ │ │ │ │ ├── dejavusansi.php
│ │ │ │ │ │ ├── dejavusansi.z
│ │ │ │ │ │ ├── dejavusansmonob.ctg.z
│ │ │ │ │ │ ├── dejavusansmonobi.ctg.z
│ │ │ │ │ │ ├── dejavusansmonobi.php
│ │ │ │ │ │ ├── dejavusansmonobi.z
│ │ │ │ │ │ ├── dejavusansmonob.php
│ │ │ │ │ │ ├── dejavusansmonob.z
│ │ │ │ │ │ ├── dejavusansmono.ctg.z
│ │ │ │ │ │ ├── dejavusansmonoi.ctg.z
│ │ │ │ │ │ ├── dejavusansmonoi.php
│ │ │ │ │ │ ├── dejavusansmonoi.z
│ │ │ │ │ │ ├── dejavusansmono.php
│ │ │ │ │ │ ├── dejavusansmono.z
│ │ │ │ │ │ ├── dejavusans.php
│ │ │ │ │ │ ├── dejavusans.z
│ │ │ │ │ │ ├── dejavuserifb.ctg.z
│ │ │ │ │ │ ├── dejavuserifbi.ctg.z
│ │ │ │ │ │ ├── dejavuserifbi.php
│ │ │ │ │ │ ├── dejavuserifbi.z
│ │ │ │ │ │ ├── dejavuserifb.php
│ │ │ │ │ │ ├── dejavuserifb.z
│ │ │ │ │ │ ├── dejavuserifcondensedb.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedbi.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedbi.php
│ │ │ │ │ │ ├── dejavuserifcondensedbi.z
│ │ │ │ │ │ ├── dejavuserifcondensedb.php
│ │ │ │ │ │ ├── dejavuserifcondensedb.z
│ │ │ │ │ │ ├── dejavuserifcondensed.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedi.ctg.z
│ │ │ │ │ │ ├── dejavuserifcondensedi.php
│ │ │ │ │ │ ├── dejavuserifcondensedi.z
│ │ │ │ │ │ ├── dejavuserifcondensed.php
│ │ │ │ │ │ ├── dejavuserifcondensed.z
│ │ │ │ │ │ ├── dejavuserif.ctg.z
│ │ │ │ │ │ ├── dejavuserifi.ctg.z
│ │ │ │ │ │ ├── dejavuserifi.php
│ │ │ │ │ │ ├── dejavuserifi.z
│ │ │ │ │ │ ├── dejavuserif.php
│ │ │ │ │ │ ├── dejavuserif.z
│ │ │ │ │ │ ├── freefont-20090104
│ │ │ │ │ │ │ ├── AUTHORS
│ │ │ │ │ │ │ ├── ChangeLog
│ │ │ │ │ │ │ ├── COPYING
│ │ │ │ │ │ │ ├── CREDITS
│ │ │ │ │ │ │ ├── INSTALL
│ │ │ │ │ │ │ └── README
│ │ │ │ │ │ ├── freemonob.ctg.z
│ │ │ │ │ │ ├── freemonobi.ctg.z
│ │ │ │ │ │ ├── freemonobi.php
│ │ │ │ │ │ ├── freemonobi.z
│ │ │ │ │ │ ├── freemonob.php
│ │ │ │ │ │ ├── freemonob.z
│ │ │ │ │ │ ├── freemono.ctg.z
│ │ │ │ │ │ ├── freemonoi.ctg.z
│ │ │ │ │ │ ├── freemonoi.php
│ │ │ │ │ │ ├── freemonoi.z
│ │ │ │ │ │ ├── freemono.php
│ │ │ │ │ │ ├── freemono.z
│ │ │ │ │ │ ├── freesansb.ctg.z
│ │ │ │ │ │ ├── freesansbi.ctg.z
│ │ │ │ │ │ ├── freesansbi.php
│ │ │ │ │ │ ├── freesansbi.z
│ │ │ │ │ │ ├── freesansb.php
│ │ │ │ │ │ ├── freesansb.z
│ │ │ │ │ │ ├── freesans.ctg.z
│ │ │ │ │ │ ├── freesansi.ctg.z
│ │ │ │ │ │ ├── freesansi.php
│ │ │ │ │ │ ├── freesansi.z
│ │ │ │ │ │ ├── freesans.php
│ │ │ │ │ │ ├── freesans.z
│ │ │ │ │ │ ├── freeserifb.ctg.z
│ │ │ │ │ │ ├── freeserifbi.ctg.z
│ │ │ │ │ │ ├── freeserifbi.php
│ │ │ │ │ │ ├── freeserifbi.z
│ │ │ │ │ │ ├── freeserifb.php
│ │ │ │ │ │ ├── freeserifb.z
│ │ │ │ │ │ ├── freeserif.ctg.z
│ │ │ │ │ │ ├── freeserifi.ctg.z
│ │ │ │ │ │ ├── freeserifi.php
│ │ │ │ │ │ ├── freeserifi.z
│ │ │ │ │ │ ├── freeserif.php
│ │ │ │ │ │ ├── freeserif.z
│ │ │ │ │ │ ├── helveticabi.php
│ │ │ │ │ │ ├── helveticab.php
│ │ │ │ │ │ ├── helveticai.php
│ │ │ │ │ │ ├── helvetica.php
│ │ │ │ │ │ ├── hysmyeongjostdmedium.php
│ │ │ │ │ │ ├── kozgopromedium.php
│ │ │ │ │ │ ├── kozminproregular.php
│ │ │ │ │ │ ├── msungstdlight.php
│ │ │ │ │ │ ├── README.TXT
│ │ │ │ │ │ ├── stsongstdlight.php
│ │ │ │ │ │ ├── symbol.php
│ │ │ │ │ │ ├── timesbi.php
│ │ │ │ │ │ ├── timesb.php
│ │ │ │ │ │ ├── timesi.php
│ │ │ │ │ │ ├── times.php
│ │ │ │ │ │ ├── uni2cid_ac15.php
│ │ │ │ │ │ ├── uni2cid_ag15.php
│ │ │ │ │ │ ├── uni2cid_aj16.php
│ │ │ │ │ │ ├── uni2cid_ak12.php
│ │ │ │ │ │ ├── utils
│ │ │ │ │ │ │ ├── enc
│ │ │ │ │ │ │ │ ├── cp1250.map
│ │ │ │ │ │ │ │ ├── cp1251.map
│ │ │ │ │ │ │ │ ├── cp1252.map
│ │ │ │ │ │ │ │ ├── cp1253.map
│ │ │ │ │ │ │ │ ├── cp1254.map
│ │ │ │ │ │ │ │ ├── cp1255.map
│ │ │ │ │ │ │ │ ├── cp1257.map
│ │ │ │ │ │ │ │ ├── cp1258.map
│ │ │ │ │ │ │ │ ├── cp874.map
│ │ │ │ │ │ │ │ ├── iso-8859-11.map
│ │ │ │ │ │ │ │ ├── iso-8859-15.map
│ │ │ │ │ │ │ │ ├── iso-8859-16.map
│ │ │ │ │ │ │ │ ├── iso-8859-1.map
│ │ │ │ │ │ │ │ ├── iso-8859-2.map
│ │ │ │ │ │ │ │ ├── iso-8859-4.map
│ │ │ │ │ │ │ │ ├── iso-8859-5.map
│ │ │ │ │ │ │ │ ├── iso-8859-7.map
│ │ │ │ │ │ │ │ ├── iso-8859-9.map
│ │ │ │ │ │ │ │ ├── koi8-r.map
│ │ │ │ │ │ │ │ └── koi8-u.map
│ │ │ │ │ │ │ ├── freetype6.dll
│ │ │ │ │ │ │ ├── makeallttffonts.php
│ │ │ │ │ │ │ ├── makefont.php
│ │ │ │ │ │ │ ├── pfm2afm
│ │ │ │ │ │ │ ├── pfm2afm.exe
│ │ │ │ │ │ │ ├── README.TXT
│ │ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ │ ├── pfm2afm-src.tar.gz
│ │ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ │ └── ttf2ufm-src.tar.gz
│ │ │ │ │ │ │ ├── ttf2ufm
│ │ │ │ │ │ │ ├── ttf2ufm.exe
│ │ │ │ │ │ │ └── zlib1.dll
│ │ │ │ │ │ ├── zapfdingbats.php
│ │ │ │ │ │ ├── ZarBold.ctg.z
│ │ │ │ │ │ ├── zarbold.php
│ │ │ │ │ │ └── ZarBold.z
│ │ │ │ │ ├── htmlcolors.php
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── alpha.png
│ │ │ │ │ │ ├── _blank.png
│ │ │ │ │ │ ├── bug.eps
│ │ │ │ │ │ ├── image_demo.jpg
│ │ │ │ │ │ ├── image_with_alpha.png
│ │ │ │ │ │ ├── img.png
│ │ │ │ │ │ ├── logo_example.gif
│ │ │ │ │ │ ├── logo_example.jpg
│ │ │ │ │ │ ├── logo_example.png
│ │ │ │ │ │ ├── pelican.ai
│ │ │ │ │ │ ├── tcpdf_cell.png
│ │ │ │ │ │ ├── tcpdf_logo.jpg
│ │ │ │ │ │ ├── tcpdf_signature.png
│ │ │ │ │ │ ├── testsvg.svg
│ │ │ │ │ │ ├── tiger.ai
│ │ │ │ │ │ └── tux.svg
│ │ │ │ │ ├── LICENSE.TXT
│ │ │ │ │ ├── pdf417.php
│ │ │ │ │ ├── qrcode.php
│ │ │ │ │ ├── README.TXT
│ │ │ │ │ ├── tcpdf.crt
│ │ │ │ │ ├── tcpdf.fdf
│ │ │ │ │ ├── tcpdf.p12
│ │ │ │ │ ├── tcpdf.php
│ │ │ │ │ └── unicode_data.php
│ │ │ │ ├── String.php
│ │ │ │ ├── trend
│ │ │ │ │ ├── bestFitClass.php
│ │ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ │ ├── linearBestFitClass.php
│ │ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ │ ├── powerBestFitClass.php
│ │ │ │ │ └── trendClass.php
│ │ │ │ ├── XMLWriter.php
│ │ │ │ ├── ZipArchive.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
│ │ │ │ ├── CellIterator.php
│ │ │ │ ├── ColumnDimension.php
│ │ │ │ ├── Drawing
│ │ │ │ │ └── Shadow.php
│ │ │ │ ├── Drawing.php
│ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ ├── HeaderFooter.php
│ │ │ │ ├── MemoryDrawing.php
│ │ │ │ ├── PageMargins.php
│ │ │ │ ├── PageSetup.php
│ │ │ │ ├── Protection.php
│ │ │ │ ├── RowDimension.php
│ │ │ │ ├── RowIterator.php
│ │ │ │ ├── Row.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
│ ├── logs
│ │ └── index.html
│ ├── models
│ │ └── index.html
│ ├── third_party
│ │ └── index.html
│ └── views
│ ├── index.html
│ └── welcome_message.php
├── index.php
├── license.txt
├── system
│ ├── core
│ │ ├── Benchmark.php
│ │ ├── CodeIgniter.php
│ │ ├── Common.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Exceptions.php
│ │ ├── Hooks.php
│ │ ├── index.html
│ │ ├── Input.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Model.php
│ │ ├── Output.php
│ │ ├── Router.php
│ │ ├── Security.php
│ │ ├── URI.php
│ │ └── Utf8.php
│ ├── database
│ │ ├── DB_active_rec.php
│ │ ├── DB_cache.php
│ │ ├── DB_driver.php
│ │ ├── DB_forge.php
│ │ ├── DB.php
│ │ ├── DB_result.php
│ │ ├── DB_utility.php
│ │ ├── drivers
│ │ │ ├── cubrid
│ │ │ │ ├── cubrid_driver.php
│ │ │ │ ├── cubrid_forge.php
│ │ │ │ ├── cubrid_result.php
│ │ │ │ ├── cubrid_utility.php
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── mssql
│ │ │ │ ├── index.html
│ │ │ │ ├── mssql_driver.php
│ │ │ │ ├── mssql_forge.php
│ │ │ │ ├── mssql_result.php
│ │ │ │ └── mssql_utility.php
│ │ │ ├── mysql
│ │ │ │ ├── index.html
│ │ │ │ ├── mysql_driver.php
│ │ │ │ ├── mysql_forge.php
│ │ │ │ ├── mysql_result.php
│ │ │ │ └── mysql_utility.php
│ │ │ ├── mysqli
│ │ │ │ ├── index.html
│ │ │ │ ├── mysqli_driver.php
│ │ │ │ ├── mysqli_forge.php
│ │ │ │ ├── mysqli_result.php
│ │ │ │ └── mysqli_utility.php
│ │ │ ├── oci8
│ │ │ │ ├── index.html
│ │ │ │ ├── oci8_driver.php
│ │ │ │ ├── oci8_forge.php
│ │ │ │ ├── oci8_result.php
│ │ │ │ └── oci8_utility.php
│ │ │ ├── odbc
│ │ │ │ ├── index.html
│ │ │ │ ├── odbc_driver.php
│ │ │ │ ├── odbc_forge.php
│ │ │ │ ├── odbc_result.php
│ │ │ │ └── odbc_utility.php
│ │ │ ├── pdo
│ │ │ │ ├── index.html
│ │ │ │ ├── pdo_driver.php
│ │ │ │ ├── pdo_forge.php
│ │ │ │ ├── pdo_result.php
│ │ │ │ └── pdo_utility.php
│ │ │ ├── postgre
│ │ │ │ ├── index.html
│ │ │ │ ├── postgre_driver.php
│ │ │ │ ├── postgre_forge.php
│ │ │ │ ├── postgre_result.php
│ │ │ │ └── postgre_utility.php
│ │ │ ├── sqlite
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlite_driver.php
│ │ │ │ ├── sqlite_forge.php
│ │ │ │ ├── sqlite_result.php
│ │ │ │ └── sqlite_utility.php
│ │ │ └── sqlsrv
│ │ │ ├── index.html
│ │ │ ├── sqlsrv_driver.php
│ │ │ ├── sqlsrv_forge.php
│ │ │ ├── sqlsrv_result.php
│ │ │ └── sqlsrv_utility.php
│ │ └── index.html
│ ├── fonts
│ │ ├── index.html
│ │ └── texb.ttf
│ ├── helpers
│ │ ├── array_helper.php
│ │ ├── captcha_helper.php
│ │ ├── cookie_helper.php
│ │ ├── date_helper.php
│ │ ├── directory_helper.php
│ │ ├── download_helper.php
│ │ ├── email_helper.php
│ │ ├── file_helper.php
│ │ ├── form_helper.php
│ │ ├── html_helper.php
│ │ ├── index.html
│ │ ├── inflector_helper.php
│ │ ├── language_helper.php
│ │ ├── number_helper.php
│ │ ├── path_helper.php
│ │ ├── security_helper.php
│ │ ├── smiley_helper.php
│ │ ├── string_helper.php
│ │ ├── text_helper.php
│ │ ├── typography_helper.php
│ │ ├── url_helper.php
│ │ └── xml_helper.php
│ ├── index.html
│ ├── language
│ │ ├── english
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ └── index.html
│ └── libraries
│ ├── Cache
│ │ ├── Cache.php
│ │ └── drivers
│ │ ├── Cache_apc.php
│ │ ├── Cache_dummy.php
│ │ ├── Cache_file.php
│ │ └── Cache_memcached.php
│ ├── Calendar.php
│ ├── Cart.php
│ ├── Driver.php
│ ├── Email.php
│ ├── Encrypt.php
│ ├── Form_validation.php
│ ├── Ftp.php
│ ├── Image_lib.php
│ ├── index.html
│ ├── javascript
│ │ └── Jquery.php
│ ├── Javascript.php
│ ├── Log.php
│ ├── Migration.php
│ ├── Pagination.php
│ ├── Parser.php
│ ├── Profiler.php
│ ├── Session.php
│ ├── Sha1.php
│ ├── Table.php
│ ├── Trackback.php
│ ├── Typography.php
│ ├── Unit_test.php
│ ├── Upload.php
│ ├── User_agent.php
│ ├── Xmlrpc.php
│ ├── Xmlrpcs.php
│ └── Zip.php
└── uploads
├── example1.xls
└── example1.xlsx
101 directories, 622 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论