【例子介绍】php版视频网站带APP 一键采集:英皇CMS影视管理系统
【相关图片】
【源码结构】
.
├── LICENSE
├── README.md
├── admin.php
├── annex
│ └── index.html
├── caches
│ ├── codes
│ │ ├── bg.png
│ │ └── font.ttf
│ ├── data.sql
│ ├── day.txt
│ ├── index.html
│ ├── month.txt
│ ├── qrcode
│ ├── star_data.sql
│ ├── table.sql
│ ├── tpl
│ ├── txt
│ │ ├── agreement.txt
│ │ └── privacy.txt
│ ├── upzip
│ └── week.txt
├── index.php
├── install.php
├── packs
│ ├── admin
│ │ ├── css
│ │ │ ├── login.css
│ │ │ └── style.css
│ │ ├── images
│ │ │ ├── aiwrap.png
│ │ │ ├── bg.png
│ │ │ └── icon_date.png
│ │ └── js
│ │ ├── china.js
│ │ ├── common.js
│ │ ├── echarts.min.js
│ │ ├── jquery-migrate-1.1.1.js
│ │ ├── jquery.dragsort-0.5.1.min.js
│ │ └── md5.js
│ ├── images
│ │ ├── empty.png
│ │ ├── ios
│ │ │ ├── 1.png
│ │ │ ├── 2.png
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── 5.png
│ │ │ └── 6.png
│ │ ├── load.gif
│ │ ├── logo.png
│ │ ├── logo_icon.png
│ │ ├── player.png
│ │ └── user.png
│ ├── index.html
│ ├── install
│ │ └── images
│ │ ├── bg.png
│ │ ├── btn.png
│ │ ├── complete.png
│ │ ├── css.css
│ │ ├── header.png
│ │ ├── icon.png
│ │ ├── icon_install.png
│ │ ├── icon_update.png
│ │ ├── ignore.png
│ │ ├── loading.gif
│ │ ├── logo.png
│ │ ├── pop_loading.gif
│ │ ├── step.png
│ │ └── tips_system.png
│ ├── jquery
│ │ ├── clipboard.min.js
│ │ ├── jquery.min.js
│ │ └── jquery.min.map
│ ├── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ └── default
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── layui.all.js
│ │ └── layui.js
│ └── player
│ ├── hls.min.js
│ ├── images
│ │ ├── full.png
│ │ ├── next.png
│ │ ├── pause.png
│ │ ├── pause_btn.png
│ │ ├── play.png
│ │ ├── play_btn.png
│ │ ├── voice.png
│ │ └── voice_on.png
│ ├── player.css
│ └── player.js
├── php版视频网站带APP 一键采集.zip
├── template
│ ├── admin
│ │ ├── ads
│ │ │ └── index.tpl
│ │ ├── advertising
│ │ │ └── index.tpl
│ │ ├── barrage
│ │ │ └── index.tpl
│ │ ├── buy
│ │ │ └── index.tpl
│ │ ├── caiji
│ │ │ ├── ruku.tpl
│ │ │ ├── set.tpl
│ │ │ ├── setting.tpl
│ │ │ ├── show.tpl
│ │ │ ├── timing.tpl
│ │ │ ├── timing_edit.tpl
│ │ │ ├── timing_url.tpl
│ │ │ ├── timing_win.tpl
│ │ │ └── zyk.tpl
│ │ ├── comment
│ │ │ └── index.tpl
│ │ ├── device
│ │ │ └── index.tpl
│ │ ├── feedback
│ │ │ ├── edit.tpl
│ │ │ └── index.tpl
│ │ ├── home
│ │ │ ├── echat.tpl
│ │ │ ├── index.tpl
│ │ │ ├── login.tpl
│ │ │ └── main.tpl
│ │ ├── links
│ │ │ ├── edit.tpl
│ │ │ └── index.tpl
│ │ ├── lists
│ │ │ ├── edit.tpl
│ │ │ └── index.tpl
│ │ ├── pay
│ │ │ ├── card.tpl
│ │ │ ├── card_add.tpl
│ │ │ ├── cion.tpl
│ │ │ └── index.tpl
│ │ ├── player
│ │ │ ├── edit.tpl
│ │ │ └── index.tpl
│ │ ├── report
│ │ │ └── index.tpl
│ │ ├── setting
│ │ │ ├── annex.tpl
│ │ │ ├── app.tpl
│ │ │ ├── caches.tpl
│ │ │ ├── index.tpl
│ │ │ ├── pay.tpl
│ │ │ ├── txt.tpl
│ │ │ └── web.tpl
│ │ ├── star
│ │ │ ├── edit.tpl
│ │ │ ├── index.tpl
│ │ │ ├── lists.tpl
│ │ │ └── lists_edit.tpl
│ │ ├── sys
│ │ │ ├── edit.tpl
│ │ │ └── index.tpl
│ │ ├── task
│ │ │ ├── edit.tpl
│ │ │ └── index.tpl
│ │ ├── topic
│ │ │ ├── edit.tpl
│ │ │ ├── index.tpl
│ │ │ └── vod.tpl
│ │ ├── user
│ │ │ ├── edit.tpl
│ │ │ └── index.tpl
│ │ └── vod
│ │ ├── edit.tpl
│ │ └── index.tpl
│ ├── apph5
│ │ ├── down_ios.tpl
│ │ ├── pay.tpl
│ │ ├── pay_bank.tpl
│ │ ├── share.tpl
│ │ └── vod.tpl
│ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ ├── html
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ └── index.html
│ ├── home.tpl
│ ├── index.html
│ ├── install
│ │ ├── index-1.tpl
│ │ ├── index-2.tpl
│ │ ├── index-3.tpl
│ │ └── index-5.tpl
│ ├── pc
│ │ └── default
│ │ ├── css
│ │ │ └── style.css
│ │ ├── images
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.png
│ │ │ ├── hot.png
│ │ │ ├── leftShadow.png
│ │ │ ├── logo.png
│ │ │ ├── nodata.png
│ │ │ ├── pay1.png
│ │ │ ├── pay2.png
│ │ │ ├── pc.png
│ │ │ ├── play.png
│ │ │ ├── reply.png
│ │ │ ├── rightShadow.png
│ │ │ ├── top.png
│ │ │ ├── top_nav_bg.png
│ │ │ ├── user.png
│ │ │ ├── vip.png
│ │ │ ├── y.png
│ │ │ ├── z.png
│ │ │ ├── zan.png
│ │ │ └── zan_on.png
│ │ ├── js
│ │ │ ├── clipboard.min.js
│ │ │ ├── index.js
│ │ │ ├── posterTvGrid.js
│ │ │ └── waterwheelCarousel.min.js
│ │ └── tpl
│ │ ├── appdown.tpl
│ │ ├── bottom.tpl
│ │ ├── head.tpl
│ │ ├── hot-index.tpl
│ │ ├── hot-news.tpl
│ │ ├── index.tpl
│ │ ├── info.tpl
│ │ ├── lists.tpl
│ │ ├── opt-index.tpl
│ │ ├── play.tpl
│ │ ├── search.tpl
│ │ ├── star-hot.tpl
│ │ ├── star-info.tpl
│ │ ├── star-lists.tpl
│ │ ├── star.tpl
│ │ ├── topic-info.tpl
│ │ ├── topic.tpl
│ │ ├── user
│ │ │ ├── comment.tpl
│ │ │ ├── fav-topic.tpl
│ │ │ ├── fav-vod.tpl
│ │ │ ├── fav.tpl
│ │ │ ├── index.tpl
│ │ │ ├── info.tpl
│ │ │ ├── login.tpl
│ │ │ ├── reg.tpl
│ │ │ └── top.tpl
│ │ └── vod.tpl
│ └── wap
│ └── default
│ ├── css
│ │ ├── flex.css
│ │ ├── mui.min.css
│ │ ├── style.css
│ │ └── swiper-bundle.min.css
│ ├── iconfont
│ │ ├── iconfont.css
│ │ ├── iconfont.eot
│ │ ├── iconfont.svg
│ │ ├── iconfont.ttf
│ │ ├── iconfont.woff
│ │ └── iconfont.woff2
│ ├── images
│ │ ├── TV.png
│ │ ├── addimg.png
│ │ ├── adds.png
│ │ ├── alipay.png
│ │ ├── bload.png
│ │ ├── bottom.png
│ │ ├── choice.png
│ │ ├── choices.png
│ │ ├── delete.png
│ │ ├── edit.png
│ │ ├── exchange-bg.png
│ │ ├── exchange-dh.png
│ │ ├── feedback.png
│ │ ├── guankan.png
│ │ ├── history.png
│ │ ├── icon_mobile_phone.png
│ │ ├── icon_password.png
│ │ ├── icon_verification_code.png
│ │ ├── index-r.png
│ │ ├── index.png
│ │ ├── invitation-bg.png
│ │ ├── invitation-font.png
│ │ ├── like-r.png
│ │ ├── like.png
│ │ ├── load.gif
│ │ ├── load.png
│ │ ├── logo.png
│ │ ├── member-bg.png
│ │ ├── member-icon1.png
│ │ ├── member-icon2.png
│ │ ├── member-icon3.png
│ │ ├── member-icon4.png
│ │ ├── member-vip-0.png
│ │ ├── member-vip-1.png
│ │ ├── more.png
│ │ ├── motx.png
│ │ ├── my-bg.png
│ │ ├── my-duih.png
│ │ ├── my-fank.png
│ │ ├── my-fenx.png
│ │ ├── my-lianx.png
│ │ ├── my-lx.png
│ │ ├── my-money.png
│ │ ├── my-pinl.png
│ │ ├── my-r.png
│ │ ├── my-rw.png
│ │ ├── my-sc.png
│ │ ├── my-shez.png
│ │ ├── my-topin.png
│ │ ├── my-vip.png
│ │ ├── my-vip2.png
│ │ ├── my-vip3.png
│ │ ├── my-yings.png
│ │ ├── my-yonhxy.png
│ │ ├── my.png
│ │ ├── new-video.png
│ │ ├── no.png
│ │ ├── nocont.png
│ │ ├── noload.png
│ │ ├── nonetwork.png
│ │ ├── notice.png
│ │ ├── noviedo.png
│ │ ├── pay1.png
│ │ ├── pay2.png
│ │ ├── play.png
│ │ ├── radio-r.png
│ │ ├── radio.png
│ │ ├── ranking-1.png
│ │ ├── ranking-2.png
│ │ ├── ranking-3.png
│ │ ├── ranking-4.png
│ │ ├── ranking-b.png
│ │ ├── ranking-bf.png
│ │ ├── ranking-bg.png
│ │ ├── ranking-j.png
│ │ ├── ranking-r.png
│ │ ├── ranking-redu.png
│ │ ├── ranking-sc.png
│ │ ├── ranking-sck.png
│ │ ├── ranking-t.png
│ │ ├── ranking.png
│ │ ├── refresh.png
│ │ ├── reply.png
│ │ ├── right.png
│ │ ├── right2.png
│ │ ├── sc-add.png
│ │ ├── sc-bg.png
│ │ ├── search.png
│ │ ├── search2.png
│ │ ├── share-lj.png
│ │ ├── share-qq.png
│ │ ├── share-wb.png
│ │ ├── share-wx.png
│ │ ├── special-r.png
│ │ ├── special.png
│ │ ├── task-bg.png
│ │ ├── task-bg2.png
│ │ ├── task-bx.png
│ │ ├── task-icon-share.png
│ │ ├── task-icon-signin.png
│ │ ├── task-icon-watch.png
│ │ ├── task-jb.png
│ │ ├── task-jdt.png
│ │ ├── task-qd.png
│ │ ├── task-qd2.png
│ │ ├── task-sq.png
│ │ ├── task-xl.png
│ │ ├── top.png
│ │ ├── top2.png
│ │ ├── vip.png
│ │ ├── wxpay.png
│ │ ├── zan.png
│ │ └── zan_on.png
│ ├── js
│ │ ├── index.js
│ │ ├── jquery-3.6.0.min.js
│ │ ├── less.min.js
│ │ ├── message.js
│ │ ├── mui.min.js
│ │ ├── roll.js
│ │ ├── stream.js
│ │ ├── swiper-bundle.min.js
│ │ └── video.js
│ └── tpl
│ ├── bottom.tpl
│ ├── head.tpl
│ ├── hot-index.tpl
│ ├── index.tpl
│ ├── info.tpl
│ ├── opt-index.tpl
│ ├── play.tpl
│ ├── search-opt.tpl
│ ├── search.tpl
│ ├── star-hot.tpl
│ ├── star-info.tpl
│ ├── star-lists.tpl
│ ├── star.tpl
│ ├── topic-info.tpl
│ ├── topic.tpl
│ ├── user
│ │ ├── comment.tpl
│ │ ├── contact.tpl
│ │ ├── edit-index.tpl
│ │ ├── edit-nickname.tpl
│ │ ├── edit-pass.tpl
│ │ ├── edit-tel.tpl
│ │ ├── exchange-lists.tpl
│ │ ├── exchange.tpl
│ │ ├── fav.tpl
│ │ ├── feedback-info.tpl
│ │ ├── feedback-my.tpl
│ │ ├── feedback.tpl
│ │ ├── index.tpl
│ │ ├── info.tpl
│ │ ├── login.tpl
│ │ ├── pass.tpl
│ │ ├── pay-lists.tpl
│ │ ├── pay.tpl
│ │ ├── read.tpl
│ │ ├── reg.tpl
│ │ ├── share.tpl
│ │ ├── task.tpl
│ │ └── top.tpl
│ ├── vod-opt-reco.tpl
│ └── vod.tpl
└── yhcms
├── apps
│ ├── config
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── memcached.php
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── profiler.php
│ │ ├── redis.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ └── user_agents.php
│ ├── controllers
│ │ ├── Ajax.php
│ │ ├── Appdown.php
│ │ ├── H5pay.php
│ │ ├── H5web.php
│ │ ├── Home.php
│ │ ├── Info.php
│ │ ├── Install.php
│ │ ├── Lists.php
│ │ ├── Opt.php
│ │ ├── Play.php
│ │ ├── Rss.php
│ │ ├── Search.php
│ │ ├── Share.php
│ │ ├── Star.php
│ │ ├── Ting.php
│ │ ├── Topic.php
│ │ ├── Vod.php
│ │ ├── admin
│ │ │ ├── Ads.php
│ │ │ ├── Advertising.php
│ │ │ ├── Ajax.php
│ │ │ ├── Barrage.php
│ │ │ ├── Buy.php
│ │ │ ├── Caiji.php
│ │ │ ├── Comment.php
│ │ │ ├── Device.php
│ │ │ ├── Feedback.php
│ │ │ ├── Home.php
│ │ │ ├── Links.php
│ │ │ ├── Lists.php
│ │ │ ├── Login.php
│ │ │ ├── Pay.php
│ │ │ ├── Player.php
│ │ │ ├── Report.php
│ │ │ ├── Setting.php
│ │ │ ├── Star.php
│ │ │ ├── Sys.php
│ │ │ ├── Task.php
│ │ │ ├── Topic.php
│ │ │ ├── Update.php
│ │ │ ├── User.php
│ │ │ └── Vod.php
│ │ ├── apiv1
│ │ │ ├── Barrage.php
│ │ │ ├── Comment.php
│ │ │ ├── Down.php
│ │ │ ├── Exchange.php
│ │ │ ├── Fav.php
│ │ │ ├── Feedback.php
│ │ │ ├── Forum.php
│ │ │ ├── Init.php
│ │ │ ├── Pay.php
│ │ │ ├── Share.php
│ │ │ ├── Star.php
│ │ │ ├── Task.php
│ │ │ ├── Topic.php
│ │ │ ├── User.php
│ │ │ ├── Vod.php
│ │ │ └── Watch.php
│ │ ├── index.html
│ │ └── user
│ │ ├── Comment.php
│ │ ├── Contact.php
│ │ ├── Edit.php
│ │ ├── Exchange.php
│ │ ├── Fav.php
│ │ ├── Feedback.php
│ │ ├── Home.php
│ │ ├── Info.php
│ │ ├── Login.php
│ │ ├── Pass.php
│ │ ├── Pay.php
│ │ ├── Read.php
│ │ ├── Reg.php
│ │ ├── Share.php
│ │ └── Task.php
│ ├── core
│ │ ├── My_Controller.php
│ │ ├── My_Loader.php
│ │ ├── My_URI.php
│ │ └── index.html
│ ├── helpers
│ │ ├── common_helper.php
│ │ └── index.html
│ ├── index.html
│ ├── libraries
│ │ ├── Alipay.php
│ │ ├── Caches.php
│ │ ├── Oss.php
│ │ ├── Pcode.php
│ │ ├── Sms.php
│ │ ├── Wxpay.php
│ │ ├── Xzfpay.php
│ │ ├── Yhzip.php
│ │ └── index.html
│ ├── logs
│ └── models
│ ├── App.php
│ ├── Collects.php
│ ├── Mydb.php
│ └── index.html
├── config
│ ├── admin_nav.php
│ ├── collect.php
│ ├── config.php
│ ├── uri.php
│ └── ver.php
├── index.html
├── myclass
│ ├── alipay
│ │ ├── AlipayMobilePublicMultiMediaClient.php
│ │ ├── AlipayMobilePublicMultiMediaExecute.php
│ │ ├── AopCertClient.php
│ │ ├── AopCertification.php
│ │ ├── AopClient.php
│ │ ├── AopEncrypt.php
│ │ ├── EncryptParseItem.php
│ │ ├── EncryptResponseData.php
│ │ ├── SignData.php
│ │ └── request
│ │ └── AlipayTradeWapPayRequest.php
│ ├── aliyun_oss
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE.md
│ │ ├── README-CN.md
│ │ ├── README.md
│ │ ├── autoload.php
│ │ ├── build-phar.sh
│ │ ├── composer.json
│ │ ├── example.jpg
│ │ ├── index.php
│ │ ├── phpunit.xml
│ │ ├── samples
│ │ │ ├── Bucket.php
│ │ │ ├── BucketCors.php
│ │ │ ├── BucketLifecycle.php
│ │ │ ├── BucketLogging.php
│ │ │ ├── BucketReferer.php
│ │ │ ├── BucketWebsite.php
│ │ │ ├── Callback.php
│ │ │ ├── Common.php
│ │ │ ├── Config.php
│ │ │ ├── Image.php
│ │ │ ├── LiveChannel.php
│ │ │ ├── MultipartUpload.php
│ │ │ ├── Object.php
│ │ │ ├── RunAll.php
│ │ │ └── Signature.php
│ │ └── src
│ │ └── OSS
│ │ ├── Core
│ │ │ ├── MimeTypes.php
│ │ │ ├── OssException.php
│ │ │ └── OssUtil.php
│ │ ├── Http
│ │ │ ├── LICENSE
│ │ │ ├── RequestCore.php
│ │ │ ├── RequestCore_Exception.php
│ │ │ └── ResponseCore.php
│ │ ├── Model
│ │ │ ├── BucketInfo.php
│ │ │ ├── BucketListInfo.php
│ │ │ ├── CnameConfig.php
│ │ │ ├── CorsConfig.php
│ │ │ ├── CorsRule.php
│ │ │ ├── GetLiveChannelHistory.php
│ │ │ ├── GetLiveChannelInfo.php
│ │ │ ├── GetLiveChannelStatus.php
│ │ │ ├── LifecycleAction.php
│ │ │ ├── LifecycleConfig.php
│ │ │ ├── LifecycleRule.php
│ │ │ ├── ListMultipartUploadInfo.php
│ │ │ ├── ListPartsInfo.php
│ │ │ ├── LiveChannelConfig.php
│ │ │ ├── LiveChannelHistory.php
│ │ │ ├── LiveChannelInfo.php
│ │ │ ├── LiveChannelListInfo.php
│ │ │ ├── LoggingConfig.php
│ │ │ ├── ObjectInfo.php
│ │ │ ├── ObjectListInfo.php
│ │ │ ├── PartInfo.php
│ │ │ ├── PrefixInfo.php
│ │ │ ├── RefererConfig.php
│ │ │ ├── StorageCapacityConfig.php
│ │ │ ├── UploadInfo.php
│ │ │ ├── WebsiteConfig.php
│ │ │ └── XmlConfig.php
│ │ ├── OssClient.php
│ │ └── Result
│ │ ├── AclResult.php
│ │ ├── AppendResult.php
│ │ ├── BodyResult.php
│ │ ├── CallbackResult.php
│ │ ├── CopyObjectResult.php
│ │ ├── DeleteObjectsResult.php
│ │ ├── ExistResult.php
│ │ ├── GetCnameResult.php
│ │ ├── GetCorsResult.php
│ │ ├── GetLifecycleResult.php
│ │ ├── GetLiveChannelHistoryResult.php
│ │ ├── GetLiveChannelInfoResult.php
│ │ ├── GetLiveChannelStatusResult.php
│ │ ├── GetLocationResult.php
│ │ ├── GetLoggingResult.php
│ │ ├── GetRefererResult.php
│ │ ├── GetStorageCapacityResult.php
│ │ ├── GetWebsiteResult.php
│ │ ├── HeaderResult.php
│ │ ├── InitiateMultipartUploadResult.php
│ │ ├── ListBucketsResult.php
│ │ ├── ListLiveChannelResult.php
│ │ ├── ListMultipartUploadResult.php
│ │ ├── ListObjectsResult.php
│ │ ├── ListPartsResult.php
│ │ ├── PutLiveChannelResult.php
│ │ ├── PutSetDeleteResult.php
│ │ ├── Result.php
│ │ ├── SymlinkResult.php
│ │ └── UploadPartResult.php
│ └── phpqrcode
│ └── phpqrcode.php
└── system
├── core
│ ├── Benchmark.php
│ ├── CodeIgniter.php
│ ├── Common.php
│ ├── Config.php
│ ├── Controller.php
│ ├── Exceptions.php
│ ├── Hooks.php
│ ├── Input.php
│ ├── Lang.php
│ ├── Loader.php
│ ├── Log.php
│ ├── Model.php
│ ├── Output.php
│ ├── Router.php
│ ├── Security.php
│ ├── URI.php
│ ├── Utf8.php
│ ├── compat
│ │ ├── hash.php
│ │ ├── index.html
│ │ ├── mbstring.php
│ │ ├── password.php
│ │ └── standard.php
│ └── index.html
├── database
│ ├── DB.php
│ ├── DB_cache.php
│ ├── DB_driver.php
│ ├── DB_forge.php
│ ├── DB_query_builder.php
│ ├── DB_result.php
│ ├── DB_utility.php
│ ├── drivers
│ │ ├── cubrid
│ │ │ ├── cubrid_driver.php
│ │ │ ├── cubrid_forge.php
│ │ │ ├── cubrid_result.php
│ │ │ ├── cubrid_utility.php
│ │ │ └── index.html
│ │ ├── ibase
│ │ │ ├── ibase_driver.php
│ │ │ ├── ibase_forge.php
│ │ │ ├── ibase_result.php
│ │ │ ├── ibase_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
│ │ │ └── subdrivers
│ │ │ ├── index.html
│ │ │ ├── pdo_4d_driver.php
│ │ │ ├── pdo_4d_forge.php
│ │ │ ├── pdo_cubrid_driver.php
│ │ │ ├── pdo_cubrid_forge.php
│ │ │ ├── pdo_dblib_driver.php
│ │ │ ├── pdo_dblib_forge.php
│ │ │ ├── pdo_firebird_driver.php
│ │ │ ├── pdo_firebird_forge.php
│ │ │ ├── pdo_ibm_driver.php
│ │ │ ├── pdo_ibm_forge.php
│ │ │ ├── pdo_informix_driver.php
│ │ │ ├── pdo_informix_forge.php
│ │ │ ├── pdo_mysql_driver.php
│ │ │ ├── pdo_mysql_forge.php
│ │ │ ├── pdo_oci_driver.php
│ │ │ ├── pdo_oci_forge.php
│ │ │ ├── pdo_odbc_driver.php
│ │ │ ├── pdo_odbc_forge.php
│ │ │ ├── pdo_pgsql_driver.php
│ │ │ ├── pdo_pgsql_forge.php
│ │ │ ├── pdo_sqlite_driver.php
│ │ │ ├── pdo_sqlite_forge.php
│ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ └── pdo_sqlsrv_forge.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
│ │ ├── sqlite3
│ │ │ ├── index.html
│ │ │ ├── sqlite3_driver.php
│ │ │ ├── sqlite3_forge.php
│ │ │ ├── sqlite3_result.php
│ │ │ └── sqlite3_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
│ │ ├── pagination_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
│ │ ├── Cache_redis.php
│ │ ├── Cache_wincache.php
│ │ └── index.html
│ └── index.html
├── Calendar.php
├── Cart.php
├── Driver.php
├── Email.php
├── Encrypt.php
├── Encryption.php
├── Form_validation.php
├── Ftp.php
├── Image_lib.php
├── Javascript
│ ├── Jquery.php
│ └── index.html
├── Javascript.php
├── Migration.php
├── Pagination.php
├── Parser.php
├── Profiler.php
├── Session
│ ├── Session.php
│ ├── SessionHandlerInterface.php
│ ├── Session_driver.php
│ ├── drivers
│ │ ├── Session_database_driver.php
│ │ ├── Session_files_driver.php
│ │ ├── Session_memcached_driver.php
│ │ ├── Session_redis_driver.php
│ │ └── index.html
│ └── index.html
├── Table.php
├── Trackback.php
├── Typography.php
├── Unit_test.php
├── Upload.php
├── User_agent.php
├── Xmlrpc.php
├── Xmlrpcs.php
├── Zip.php
└── index.html
123 directories, 805 files
评论