基本信息
源码名称:PHPExcel包+自己写的phpexcel和CI框架整合的类
源码大小:11.47M
文件格式:.rar
开发语言:PHP
更新时间:2023-07-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
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
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
│ │ │ │ │ ├── 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