实例介绍
LzCMS(老张内容管理系统),也就是老张博客的源码。LzCMS了老张博客用的同一个LOGO。 LzCMS是用ThinkPHP+layui做的,简单方便,没有复杂的功能,就是一个简单博客系统。 功能: 1、内容模型有:单页模型、文章模型、链接模型、图集模型、下载模型。 2、留言功能(可回复) 3、文章评论(集成了搜狐的畅言评论,需后台配置即可) 4、Sitemap有利于搜索引擎的收录
【实例截图】
【核心代码】
LzCMS1.0
└── LzCMS
├── laozhang.sql
├── readme.txt
└── www
├── application
│ ├── 404.html
│ ├── admin
│ │ ├── config.php
│ │ ├── controller
│ │ │ ├── Admin.php
│ │ │ ├── Article.php
│ │ │ ├── Cache.php
│ │ │ ├── Category.php
│ │ │ ├── Download.php
│ │ │ ├── Feedback.php
│ │ │ ├── Index.php
│ │ │ ├── Init.php
│ │ │ ├── Link.php
│ │ │ ├── Login.php
│ │ │ ├── Member.php
│ │ │ ├── Page.php
│ │ │ ├── Picture.php
│ │ │ ├── Setting.php
│ │ │ └── Upload.php
│ │ ├── model
│ │ │ └── Admin.php
│ │ └── view
│ │ ├── admin
│ │ │ └── edit.tpl.php
│ │ ├── article
│ │ │ ├── add.tpl.php
│ │ │ ├── edit.tpl.php
│ │ │ └── list.tpl.php
│ │ ├── category
│ │ │ ├── add_link.tpl.php
│ │ │ ├── add.tpl.php
│ │ │ ├── content_manage_search.tpl.php
│ │ │ ├── edit_link.tpl.php
│ │ │ ├── edit.tpl.php
│ │ │ └── list.tpl.php
│ │ ├── download
│ │ │ ├── add.tpl.php
│ │ │ ├── edit.tpl.php
│ │ │ └── list.tpl.php
│ │ ├── feedback
│ │ │ ├── edit.tpl.php
│ │ │ ├── list.tpl.php
│ │ │ └── reply.tpl.php
│ │ ├── index
│ │ │ ├── home.tpl.php
│ │ │ └── index.tpl.php
│ │ ├── link
│ │ │ ├── add.tpl.php
│ │ │ ├── edit.tpl.php
│ │ │ └── list.tpl.php
│ │ ├── member
│ │ │ └── list.tpl.php
│ │ ├── page
│ │ │ └── edit.tpl.php
│ │ ├── picture
│ │ │ ├── add.tpl.php
│ │ │ ├── edit.tpl.php
│ │ │ └── list.tpl.php
│ │ ├── public
│ │ │ ├── footer.tpl.php
│ │ │ ├── login.tpl.php
│ │ │ └── toper.tpl.php
│ │ └── setting
│ │ ├── base.tpl.php
│ │ ├── links.tpl.php
│ │ └── sitemap.tpl.php
│ ├── command.php
│ ├── common
│ │ └── model
│ │ ├── Article.php
│ │ ├── Cache.php
│ │ ├── Category.php
│ │ ├── Download.php
│ │ ├── Feedback.php
│ │ ├── Link.php
│ │ ├── Member.php
│ │ ├── Page.php
│ │ ├── Picture.php
│ │ ├── Search.php
│ │ ├── Setting.php
│ │ └── Upload.php
│ ├── common.php
│ ├── config.php
│ ├── database.php
│ ├── index
│ │ ├── config.php
│ │ └── controller
│ │ ├── Article.php
│ │ ├── Download.php
│ │ ├── Feedback.php
│ │ ├── Index.php
│ │ ├── Init.php
│ │ ├── Link.php
│ │ ├── Member.php
│ │ ├── Page.php
│ │ ├── Picture.php
│ │ └── Search.php
│ ├── route.php
│ └── tags.php
├── build.php
├── composer.json
├── composer.lock
├── extend
│ └── Form.php
├── favicon.ico
├── index.php
├── LICENSE.txt
├── README.md
├── robots.txt
├── router.php
├── runtime
├── Sitemap.xml
├── static
│ ├── css
│ │ └── global.css
│ ├── images
│ │ ├── logo-login.png
│ │ ├── logo-top.png
│ │ └── touming_bg.png
│ ├── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ ├── icon.png
│ │ │ │ └── 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
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 1.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 2.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 3.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 4.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 5.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 6.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ ├── dest
│ │ │ │ └── layui.all.js
│ │ │ ├── lib
│ │ │ │ └── jquery.js
│ │ │ └── modules
│ │ │ ├── code.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ └── layui.js
│ └── umeditor
│ ├── dialogs
│ │ ├── emotion
│ │ │ ├── emotion.css
│ │ │ ├── emotion.js
│ │ │ └── images
│ │ │ ├── 0.gif
│ │ │ ├── bface.gif
│ │ │ ├── cface.gif
│ │ │ ├── fface.gif
│ │ │ ├── jxface2.gif
│ │ │ ├── neweditor-tab-bg.png
│ │ │ ├── tface.gif
│ │ │ ├── wface.gif
│ │ │ └── yface.gif
│ │ ├── formula
│ │ │ ├── formula.css
│ │ │ ├── formula.html
│ │ │ ├── formula.js
│ │ │ └── images
│ │ │ └── formula.png
│ │ ├── image
│ │ │ ├── image.css
│ │ │ ├── image.js
│ │ │ └── images
│ │ │ ├── close.png
│ │ │ ├── upload1.png
│ │ │ └── upload2.png
│ │ ├── link
│ │ │ └── link.js
│ │ ├── map
│ │ │ ├── map.html
│ │ │ └── map.js
│ │ └── video
│ │ ├── images
│ │ │ ├── center_focus.jpg
│ │ │ ├── left_focus.jpg
│ │ │ ├── none_focus.jpg
│ │ │ └── right_focus.jpg
│ │ ├── video.css
│ │ └── video.js
│ ├── index.html
│ ├── lang
│ │ ├── en
│ │ │ ├── en.js
│ │ │ └── images
│ │ │ ├── addimage.png
│ │ │ ├── alldeletebtnhoverskin.png
│ │ │ ├── alldeletebtnupskin.png
│ │ │ ├── background.png
│ │ │ ├── button.png
│ │ │ ├── copy.png
│ │ │ ├── deletedisable.png
│ │ │ ├── deleteenable.png
│ │ │ ├── imglabel.png
│ │ │ ├── listbackground.png
│ │ │ ├── localimage.png
│ │ │ ├── music.png
│ │ │ ├── rotateleftdisable.png
│ │ │ ├── rotateleftenable.png
│ │ │ ├── rotaterightdisable.png
│ │ │ ├── rotaterightenable.png
│ │ │ └── upload.png
│ │ └── zh-cn
│ │ ├── images
│ │ │ ├── copy.png
│ │ │ ├── imglabel.png
│ │ │ ├── localimage.png
│ │ │ ├── music.png
│ │ │ └── upload.png
│ │ └── zh-cn.js
│ ├── themes
│ │ └── default
│ │ ├── css
│ │ │ ├── umeditor.css
│ │ │ └── umeditor.min.css
│ │ └── images
│ │ ├── caret.png
│ │ ├── close.png
│ │ ├── icons.gif
│ │ ├── icons.png
│ │ ├── ok.gif
│ │ ├── pop-bg.png
│ │ ├── spacer.gif
│ │ └── videologo.gif
│ ├── third-party
│ │ ├── jquery.min.js
│ │ └── mathquill
│ │ ├── font
│ │ │ ├── stixgeneral-bundle
│ │ │ │ ├── STIXFontLicense2010.txt
│ │ │ │ ├── stixgeneralbolita-webfont.eot
│ │ │ │ ├── stixgeneralbolita-webfont.svg
│ │ │ │ ├── stixgeneralbolita-webfont.ttf
│ │ │ │ ├── stixgeneralbolita-webfont.woff
│ │ │ │ ├── stixgeneralbol-webfont.eot
│ │ │ │ ├── stixgeneralbol-webfont.svg
│ │ │ │ ├── stixgeneralbol-webfont.ttf
│ │ │ │ ├── stixgeneralbol-webfont.woff
│ │ │ │ ├── stixgeneralitalic-webfont.eot
│ │ │ │ ├── stixgeneralitalic-webfont.svg
│ │ │ │ ├── stixgeneralitalic-webfont.ttf
│ │ │ │ ├── stixgeneralitalic-webfont.woff
│ │ │ │ ├── stixgeneral-webfont.eot
│ │ │ │ ├── stixgeneral-webfont.svg
│ │ │ │ ├── stixgeneral-webfont.ttf
│ │ │ │ └── stixgeneral-webfont.woff
│ │ │ ├── Symbola.eot
│ │ │ ├── Symbola.otf
│ │ │ ├── Symbola.svg
│ │ │ ├── Symbola.ttf
│ │ │ └── Symbola.woff
│ │ ├── mathquill.css
│ │ ├── mathquill.js
│ │ └── mathquill.min.js
│ ├── umeditor.config.js
│ ├── umeditor.js
│ └── umeditor.min.js
├── template
│ └── laozhang
│ ├── article
│ │ ├── index.html
│ │ ├── list.html
│ │ └── show.html
│ ├── download
│ │ ├── index.html
│ │ └── list.html
│ ├── feedback
│ │ └── index.html
│ ├── index
│ │ └── index.html
│ ├── link
│ │ └── list.html
│ ├── member
│ │ └── other_login.html
│ ├── page
│ │ └── index.html
│ ├── picture
│ │ ├── index.html
│ │ ├── list.html
│ │ └── show.html
│ ├── public
│ │ ├── breadcrumb.html
│ │ ├── footer.html
│ │ ├── header.html
│ │ └── qrcode.html
│ ├── search
│ │ └── search.html
│ └── static
│ ├── css
│ │ └── style.css
│ ├── images
│ │ ├── banner.jpg
│ │ ├── gonganbeian.png
│ │ ├── laozhang_avatar.png
│ │ ├── laozhang.png
│ │ ├── logo-header.png
│ │ ├── no_pic.png
│ │ ├── second_banner.jpg
│ │ ├── tag_icon.png
│ │ └── wechat_qrcode.jpg
│ ├── js
│ │ └── qrcode.js
│ └── layui
│ ├── css
│ │ ├── layui.css
│ │ └── modules
│ │ ├── code.css
│ │ ├── laydate
│ │ │ ├── icon.png
│ │ │ └── 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
│ ├── images
│ │ └── face
│ │ ├── 0.gif
│ │ ├── 10.gif
│ │ ├── 11.gif
│ │ ├── 12.gif
│ │ ├── 13.gif
│ │ ├── 14.gif
│ │ ├── 15.gif
│ │ ├── 16.gif
│ │ ├── 17.gif
│ │ ├── 18.gif
│ │ ├── 19.gif
│ │ ├── 1.gif
│ │ ├── 20.gif
│ │ ├── 21.gif
│ │ ├── 22.gif
│ │ ├── 23.gif
│ │ ├── 24.gif
│ │ ├── 25.gif
│ │ ├── 26.gif
│ │ ├── 27.gif
│ │ ├── 28.gif
│ │ ├── 29.gif
│ │ ├── 2.gif
│ │ ├── 30.gif
│ │ ├── 31.gif
│ │ ├── 32.gif
│ │ ├── 33.gif
│ │ ├── 34.gif
│ │ ├── 35.gif
│ │ ├── 36.gif
│ │ ├── 37.gif
│ │ ├── 38.gif
│ │ ├── 39.gif
│ │ ├── 3.gif
│ │ ├── 40.gif
│ │ ├── 41.gif
│ │ ├── 42.gif
│ │ ├── 43.gif
│ │ ├── 44.gif
│ │ ├── 45.gif
│ │ ├── 46.gif
│ │ ├── 47.gif
│ │ ├── 48.gif
│ │ ├── 49.gif
│ │ ├── 4.gif
│ │ ├── 50.gif
│ │ ├── 51.gif
│ │ ├── 52.gif
│ │ ├── 53.gif
│ │ ├── 54.gif
│ │ ├── 55.gif
│ │ ├── 56.gif
│ │ ├── 57.gif
│ │ ├── 58.gif
│ │ ├── 59.gif
│ │ ├── 5.gif
│ │ ├── 60.gif
│ │ ├── 61.gif
│ │ ├── 62.gif
│ │ ├── 63.gif
│ │ ├── 64.gif
│ │ ├── 65.gif
│ │ ├── 66.gif
│ │ ├── 67.gif
│ │ ├── 68.gif
│ │ ├── 69.gif
│ │ ├── 6.gif
│ │ ├── 70.gif
│ │ ├── 71.gif
│ │ ├── 7.gif
│ │ ├── 8.gif
│ │ └── 9.gif
│ ├── lay
│ │ ├── dest
│ │ │ └── layui.all.js
│ │ ├── lib
│ │ │ └── jquery.js
│ │ └── modules
│ │ ├── code.js
│ │ ├── element.js
│ │ ├── flow.js
│ │ ├── form.js
│ │ ├── laydate.js
│ │ ├── layedit.js
│ │ ├── layer.js
│ │ ├── laypage.js
│ │ ├── laytpl.js
│ │ ├── tree.js
│ │ ├── upload.js
│ │ └── util.js
│ └── layui.js
├── think
├── thinkphp
│ ├── base.php
│ ├── codecov.yml
│ ├── composer.json
│ ├── console.php
│ ├── CONTRIBUTING.md
│ ├── convention.php
│ ├── helper.php
│ ├── lang
│ │ └── zh-cn.php
│ ├── library
│ │ ├── think
│ │ │ ├── App.php
│ │ │ ├── Build.php
│ │ │ ├── cache
│ │ │ │ ├── driver
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Lite.php
│ │ │ │ │ ├── Memcached.php
│ │ │ │ │ ├── Memcache.php
│ │ │ │ │ ├── Redis.php
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ ├── Wincache.php
│ │ │ │ │ └── Xcache.php
│ │ │ │ └── Driver.php
│ │ │ ├── Cache.php
│ │ │ ├── Collection.php
│ │ │ ├── config
│ │ │ │ └── driver
│ │ │ │ ├── Ini.php
│ │ │ │ ├── Json.php
│ │ │ │ └── Xml.php
│ │ │ ├── Config.php
│ │ │ ├── console
│ │ │ │ ├── bin
│ │ │ │ │ ├── hiddeninput.exe
│ │ │ │ │ └── README.md
│ │ │ │ ├── command
│ │ │ │ │ ├── Build.php
│ │ │ │ │ ├── Clear.php
│ │ │ │ │ ├── Help.php
│ │ │ │ │ ├── Lists.php
│ │ │ │ │ ├── make
│ │ │ │ │ │ ├── Controller.php
│ │ │ │ │ │ ├── Model.php
│ │ │ │ │ │ └── stubs
│ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ ├── controller.stub
│ │ │ │ │ │ └── model.stub
│ │ │ │ │ ├── Make.php
│ │ │ │ │ └── optimize
│ │ │ │ │ ├── Autoload.php
│ │ │ │ │ ├── Config.php
│ │ │ │ │ ├── Route.php
│ │ │ │ │ └── Schema.php
│ │ │ │ ├── Command.php
│ │ │ │ ├── input
│ │ │ │ │ ├── Argument.php
│ │ │ │ │ ├── Definition.php
│ │ │ │ │ └── Option.php
│ │ │ │ ├── Input.php
│ │ │ │ ├── LICENSE
│ │ │ │ ├── output
│ │ │ │ │ ├── Ask.php
│ │ │ │ │ ├── descriptor
│ │ │ │ │ │ └── Console.php
│ │ │ │ │ ├── Descriptor.php
│ │ │ │ │ ├── driver
│ │ │ │ │ │ ├── Buffer.php
│ │ │ │ │ │ ├── Console.php
│ │ │ │ │ │ └── Nothing.php
│ │ │ │ │ ├── formatter
│ │ │ │ │ │ ├── Stack.php
│ │ │ │ │ │ └── Style.php
│ │ │ │ │ ├── Formatter.php
│ │ │ │ │ ├── question
│ │ │ │ │ │ ├── Choice.php
│ │ │ │ │ │ └── Confirmation.php
│ │ │ │ │ └── Question.php
│ │ │ │ └── Output.php
│ │ │ ├── Console.php
│ │ │ ├── controller
│ │ │ │ ├── Rest.php
│ │ │ │ └── Yar.php
│ │ │ ├── Controller.php
│ │ │ ├── Cookie.php
│ │ │ ├── db
│ │ │ │ ├── builder
│ │ │ │ │ ├── Mysql.php
│ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ └── Sqlsrv.php
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── connector
│ │ │ │ │ ├── Mysql.php
│ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ ├── pgsql.sql
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ └── Sqlsrv.php
│ │ │ │ ├── exception
│ │ │ │ │ ├── BindParamException.php
│ │ │ │ │ ├── DataNotFoundException.php
│ │ │ │ │ └── ModelNotFoundException.php
│ │ │ │ └── Query.php
│ │ │ ├── Db.php
│ │ │ ├── debug
│ │ │ │ ├── Console.php
│ │ │ │ └── Html.php
│ │ │ ├── Debug.php
│ │ │ ├── Env.php
│ │ │ ├── Error.php
│ │ │ ├── exception
│ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ ├── DbException.php
│ │ │ │ ├── ErrorException.php
│ │ │ │ ├── Handle.php
│ │ │ │ ├── HttpException.php
│ │ │ │ ├── HttpResponseException.php
│ │ │ │ ├── PDOException.php
│ │ │ │ ├── RouteNotFoundException.php
│ │ │ │ ├── TemplateNotFoundException.php
│ │ │ │ ├── ThrowableError.php
│ │ │ │ └── ValidateException.php
│ │ │ ├── Exception.php
│ │ │ ├── File.php
│ │ │ ├── Hook.php
│ │ │ ├── Lang.php
│ │ │ ├── Loader.php
│ │ │ ├── log
│ │ │ │ └── driver
│ │ │ │ ├── File.php
│ │ │ │ ├── Socket.php
│ │ │ │ └── Test.php
│ │ │ ├── Log.php
│ │ │ ├── model
│ │ │ │ ├── Merge.php
│ │ │ │ ├── Pivot.php
│ │ │ │ └── Relation.php
│ │ │ ├── Model.php
│ │ │ ├── paginator
│ │ │ │ ├── Collection.php
│ │ │ │ └── driver
│ │ │ │ └── Bootstrap.php
│ │ │ ├── Paginator.php
│ │ │ ├── process
│ │ │ │ ├── Builder.php
│ │ │ │ ├── exception
│ │ │ │ │ ├── Faild.php
│ │ │ │ │ └── Timeout.php
│ │ │ │ ├── pipes
│ │ │ │ │ ├── Pipes.php
│ │ │ │ │ ├── Unix.php
│ │ │ │ │ └── Windows.php
│ │ │ │ └── Utils.php
│ │ │ ├── Process.php
│ │ │ ├── Request.php
│ │ │ ├── response
│ │ │ │ ├── Json.php
│ │ │ │ ├── Jsonp.php
│ │ │ │ ├── Redirect.php
│ │ │ │ ├── View.php
│ │ │ │ └── Xml.php
│ │ │ ├── Response.php
│ │ │ ├── Route.php
│ │ │ ├── session
│ │ │ │ └── driver
│ │ │ │ ├── Memcached.php
│ │ │ │ ├── Memcache.php
│ │ │ │ └── Redis.php
│ │ │ ├── Session.php
│ │ │ ├── template
│ │ │ │ ├── driver
│ │ │ │ │ └── File.php
│ │ │ │ ├── taglib
│ │ │ │ │ └── Cx.php
│ │ │ │ └── TagLib.php
│ │ │ ├── Template.php
│ │ │ ├── Url.php
│ │ │ ├── Validate.php
│ │ │ ├── view
│ │ │ │ └── driver
│ │ │ │ ├── Php.php
│ │ │ │ └── Think.php
│ │ │ └── View.php
│ │ └── traits
│ │ ├── controller
│ │ │ └── Jump.php
│ │ ├── model
│ │ │ └── SoftDelete.php
│ │ └── think
│ │ └── Instance.php
│ ├── LICENSE.txt
│ ├── logo.png
│ ├── phpunit.xml
│ ├── README.md
│ ├── start.php
│ └── tpl
│ ├── default_index.tpl
│ ├── dispatch_jump.tpl
│ ├── page_trace.tpl
│ └── think_exception.tpl
├── uploads
│ ├── files
│ │ └── 20170217
│ │ └── 8cc1db0c526c991e784cd6a83b034281.png
│ ├── images
│ │ ├── 20161229
│ │ │ ├── 1a8d20605f86f4003d8609f2fb8c3fca.png
│ │ │ ├── 1a8d20605f86f4003d8609f2fb8c3fca_thumb_165_110.png
│ │ │ ├── 1a8d20605f86f4003d8609f2fb8c3fca_thumb_200_200.png
│ │ │ ├── 4c1e24ce453d664d10f3973f097e0334.png
│ │ │ ├── eda1812367c988c7c0a2b37248241a54.jpg
│ │ │ └── ee5e446aec809c208dc07a4dfa3dec39.png
│ │ ├── 20161231
│ │ │ ├── 94dabe3651025796b1a9b0714cbbe02b.jpg
│ │ │ ├── 94dabe3651025796b1a9b0714cbbe02b_thumb_165_110.jpg
│ │ │ └── 94dabe3651025796b1a9b0714cbbe02b_thumb_200_200.jpg
│ │ ├── 20170110
│ │ │ ├── 24204ae82d635a67a688d37125b7a510.jpg
│ │ │ ├── 24204ae82d635a67a688d37125b7a510_thumb_165_110.jpg
│ │ │ └── 24204ae82d635a67a688d37125b7a510_thumb_200_200.jpg
│ │ ├── 20170210
│ │ │ ├── 7cc172f21dfe4f6fbbe1ae8ee98018ca.png
│ │ │ ├── 7cc172f21dfe4f6fbbe1ae8ee98018ca_thumb_200_200.png
│ │ │ └── 7cc172f21dfe4f6fbbe1ae8ee98018ca_thumb_270_180.png
│ │ └── 20170217
│ │ ├── 52998c2975ea205f752a927f6ab1e125.png
│ │ └── 52998c2975ea205f752a927f6ab1e125_thumb_270_180.png
│ └── layedit
│ ├── 20161229
│ │ └── 5d28af3c25d86a9e0e637c7b52e325c5.png
│ ├── 20161231
│ │ ├── 43497892b2e385def8118e3f6e84464a.jpg
│ │ └── d6dd4c8028953a0430a4f4a0eea90946.jpg
│ └── 20170110
│ └── 87d3e909ddc094d9f79e0fb2ff70e13c.jpg
└── vendor
├── autoload.php
├── composer
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ ├── ClassLoader.php
│ ├── installed.json
│ └── LICENSE
└── topthink
├── think-captcha
│ ├── assets
│ │ ├── bgs
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── 7.jpg
│ │ │ └── 8.jpg
│ │ ├── ttfs
│ │ │ ├── 1.ttf
│ │ │ ├── 2.ttf
│ │ │ ├── 3.ttf
│ │ │ ├── 4.ttf
│ │ │ ├── 5.ttf
│ │ │ └── 6.ttf
│ │ └── zhttfs
│ │ └── 1.ttf
│ ├── composer.json
│ ├── LICENSE
│ ├── README.md
│ └── src
│ ├── CaptchaController.php
│ ├── Captcha.php
│ └── helper.php
├── think-image
│ ├── composer.json
│ ├── LICENSE
│ ├── phpunit.xml
│ ├── README.md
│ ├── src
│ │ ├── image
│ │ │ ├── Exception.php
│ │ │ └── gif
│ │ │ ├── Decoder.php
│ │ │ ├── Encoder.php
│ │ │ └── Gif.php
│ │ └── Image.php
│ └── tests
│ ├── autoload.php
│ ├── CropTest.php
│ ├── FlipTest.php
│ ├── images
│ │ ├── test.bmp
│ │ ├── test.gif
│ │ ├── test.jpg
│ │ ├── test.png
│ │ └── test.ttf
│ ├── InfoTest.php
│ ├── RotateTest.php
│ ├── TestCase.php
│ ├── TextTest.php
│ ├── ThumbTest.php
│ ├── tmp
│ └── WaterTest.php
└── think-installer
├── composer.json
└── src
├── Plugin.php
├── ThinkExtend.php
├── ThinkFramework.php
└── ThinkTesting.php
174 directories, 656 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论