在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 自己写的thinkPHP小型论坛系统

自己写的thinkPHP小型论坛系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.22M
  • 下载次数:10
  • 浏览次数:172
  • 发布时间:2020-09-08
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
有完整的前台界面和后台管理,有数据库表结构文件(sql文件直接导入MySQL即可),包括登录、注册、评论、等级晋升、权限管理等模块。
【实例截图】
【核心代码】
sylubbs
└── sylubbs
├── Admin
│   ├── Common
│   ├── Conf
│   │   └── config.php
│   ├── Lang
│   ├── Lib
│   │   ├── Action
│   │   │   ├── AdminAction.class.php
│   │   │   ├── ClubAction.class.php
│   │   │   ├── ExtendAction.class.php
│   │   │   ├── IndexAction.class.php
│   │   │   ├── LinkAction.class.php
│   │   │   ├── LoginAction.class.php
│   │   │   ├── TopicAction.class.php
│   │   │   └── UserAction.class.php
│   │   ├── Behavior
│   │   ├── Model
│   │   └── Widget
│   ├── Runtime
│   │   ├── Cache
│   │   │   ├── 024a3caece806e7889c83cb148b84a01.php
│   │   │   ├── 124651ed3b27acf2999acf711ddfefec.php
│   │   │   ├── 20eabf8d43f497715f3e1a7ec1a2f00f.php
│   │   │   ├── 27a2961affbd82927b940a8cdc1633e5.php
│   │   │   ├── 27e9c4fddbdacc085a84cce69c1ba206.php
│   │   │   ├── 2d49651a61ec748a6836cf5c047469c0.php
│   │   │   ├── 3e11a3deb83fc47a3f138af384ddb154.php
│   │   │   ├── 83cb4ac82d30f4fc34524efcdcad3cf4.php
│   │   │   ├── d21dfc824bea5bd7b4a7300e628768b9.php
│   │   │   └── d3b52949bc7a6e77d7ee6b147926643d.php
│   │   └── Logs
│   │   ├── 14_11_28.log
│   │   ├── 15_01_02.log
│   │   └── 15_01_03.log
│   └── Tpl
│   ├── Admin
│   │   ├── add.html
│   │   ├── edit.html
│   │   └── index.html
│   ├── Club
│   │   ├── edit.html
│   │   └── index.html
│   ├── Common
│   │   └── common.html
│   ├── Index
│   │   └── index.html
│   ├── Link
│   │   ├── add.html
│   │   ├── edit.html
│   │   └── index.html
│   ├── Login
│   │   └── login.html
│   ├── Topic
│   │   ├── comment.html
│   │   └── index.html
│   └── User
│   ├── edit.html
│   └── index.html
├── admin.php
├── config.yaml
├── Home
│   ├── Common
│   │   ├── config.php
│   │   └── config_sae.php
│   ├── Conf
│   │   └── config.php
│   ├── Lang
│   ├── Lib
│   │   ├── Action
│   │   │   ├── CommentsAction.class.php
│   │   │   ├── DemoAction.class.php
│   │   │   ├── IndexAction.class.php
│   │   │   ├── LoginAction.class.php
│   │   │   ├── PostAction.class.php
│   │   │   └── UserAction.class.php
│   │   ├── Behavior
│   │   ├── Model
│   │   └── Widget
│   ├── Runtime
│   │   └── Cache
│   │   ├── 7e4848229090366086cc7eeb3bfc0798.php
│   │   ├── 8bfafbec0aad3f4bcbe18dbfc8b87c50.php
│   │   ├── b9f69fdf349ffbadda01c4457b90829c.php
│   │   ├── c5fb3502453f5c934e8ab5c091e5f9fb.php
│   │   └── e30c39b97405d9bb1d1c0835c4ca54b7.php
│   └── Tpl
│   ├── Index
│   │   └── index.html
│   ├── Post
│   │   ├── footer.html
│   │   ├── head.html
│   │   ├── index.html
│   │   ├── left.html
│   │   └── new.html
│   └── User
│   ├── edit.html
│   ├── index.html
│   ├── profile.html
│   └── Reg.html
├── index.php
├── Public
│   ├── css
│   │   ├── bootstrap.css
│   │   ├── bootstrap.css.map
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap-theme.css
│   │   ├── bootstrap-theme.css.map
│   │   ├── bootstrap-theme.min.css
│   │   ├── my.css
│   │   ├── unicorn.grey.css
│   │   └── unicorn.main.css
│   ├── fonts
│   │   ├── glyphicons-halflings-regular.eot
│   │   ├── glyphicons-halflings-regular.svg
│   │   ├── glyphicons-halflings-regular.ttf
│   │   └── glyphicons-halflings-regular.woff
│   ├── img
│   │   ├── 1.gif
│   │   ├── 50.png
│   │   ├── 8.gif
│   │   ├── 9.gif
│   │   ├── phone.png
│   │   ├── picture.png
│   │   ├── tag.png
│   │   ├── topic.png
│   │   └── user.png
│   ├── js
│   │   ├── bootstrap.js
│   │   ├── bootstrap.min.js
│   │   ├── jquery.min.js
│   │   ├── npm.js
│   │   └── unicorn.js
│   ├── ueditor
│   │   ├── dialogs
│   │   │   ├── internal.js
│   │   │   └── link
│   │   │   └── link.html
│   │   ├── index.html
│   │   ├── lang
│   │   │   └── zh-cn
│   │   │   ├── images
│   │   │   │   ├── copy.png
│   │   │   │   ├── localimage.png
│   │   │   │   ├── music.png
│   │   │   │   └── upload.png
│   │   │   └── zh-cn.js
│   │   ├── php
│   │   │   ├── action_crawler.php
│   │   │   ├── action_list.php
│   │   │   ├── action_upload.php
│   │   │   ├── config.json
│   │   │   ├── controller.php
│   │   │   └── Uploader.class.php
│   │   ├── themes
│   │   │   ├── default
│   │   │   │   ├── css
│   │   │   │   │   ├── ueditor.css
│   │   │   │   │   └── ueditor.min.css
│   │   │   │   ├── dialogbase.css
│   │   │   │   └── images
│   │   │   │   ├── anchor.gif
│   │   │   │   ├── arrow_down.png
│   │   │   │   ├── arrow.png
│   │   │   │   ├── arrow_up.png
│   │   │   │   ├── button-bg.gif
│   │   │   │   ├── cancelbutton.gif
│   │   │   │   ├── charts.png
│   │   │   │   ├── cursor_h.gif
│   │   │   │   ├── cursor_h.png
│   │   │   │   ├── cursor_v.gif
│   │   │   │   ├── cursor_v.png
│   │   │   │   ├── dialog-title-bg.png
│   │   │   │   ├── filescan.png
│   │   │   │   ├── highlighted.gif
│   │   │   │   ├── icons-all.gif
│   │   │   │   ├── icons.gif
│   │   │   │   ├── icons.png
│   │   │   │   ├── loaderror.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── lock.gif
│   │   │   │   ├── neweditor-tab-bg.png
│   │   │   │   ├── pagebreak.gif
│   │   │   │   ├── scale.png
│   │   │   │   ├── sortable.png
│   │   │   │   ├── spacer.gif
│   │   │   │   ├── sparator_v.png
│   │   │   │   ├── table-cell-align.png
│   │   │   │   ├── tangram-colorpicker.png
│   │   │   │   ├── toolbar_bg.png
│   │   │   │   ├── unhighlighted.gif
│   │   │   │   ├── upload.png
│   │   │   │   ├── videologo.gif
│   │   │   │   ├── word.gif
│   │   │   │   └── wordpaste.png
│   │   │   └── iframe.css
│   │   ├── third-party
│   │   │   └── codemirror
│   │   │   ├── codemirror.css
│   │   │   └── codemirror.js
│   │   ├── ueditor.all.js
│   │   ├── ueditor.all.min.js
│   │   ├── ueditor.config.js
│   │   ├── ueditor.parse.js
│   │   └── ueditor.parse.min.js
│   └── upload
│   └── index.html
├── readme.html
├── sae_app_wizard.xml
├── sylubbs.sql
└── ThinkPHP
├── Common
│   ├── common.php
│   ├── functions.php
│   └── runtime.php
├── Conf
│   ├── alias.php
│   ├── convention.php
│   ├── debug.php
│   ├── mode.php
│   └── tags.php
├── Extend
│   ├── Engine
│   │   ├── Sae
│   │   │   ├── build_first_app.php
│   │   │   ├── Common
│   │   │   │   ├── common.php
│   │   │   │   ├── functions.php
│   │   │   │   ├── runtime.php
│   │   │   │   ├── sae_common.php
│   │   │   │   └── sae_functions.php
│   │   │   ├── Conf
│   │   │   │   ├── alias.php
│   │   │   │   ├── convention_sae.php
│   │   │   │   └── tags.php
│   │   │   ├── DefaultApp
│   │   │   │   ├── Common
│   │   │   │   │   ├── common.php
│   │   │   │   │   └── index.html
│   │   │   │   ├── Conf
│   │   │   │   │   ├── config.php
│   │   │   │   │   └── config_sae.php
│   │   │   │   ├── Lang
│   │   │   │   │   └── index.html
│   │   │   │   ├── Lib
│   │   │   │   │   ├── Action
│   │   │   │   │   │   └── IndexAction.class.php
│   │   │   │   │   ├── Behavior
│   │   │   │   │   │   └── index.html
│   │   │   │   │   ├── Model
│   │   │   │   │   │   └── index.html
│   │   │   │   │   ├── ORG
│   │   │   │   │   │   ├── Image.class.php
│   │   │   │   │   │   ├── String.class.php
│   │   │   │   │   │   └── UploadFile.class.php
│   │   │   │   │   └── Widget
│   │   │   │   │   └── index.html
│   │   │   │   └── Tpl
│   │   │   │   └── Index
│   │   │   │   ├── index.html
│   │   │   │   └── upload.html
│   │   │   ├── Lib
│   │   │   │   ├── Behavior
│   │   │   │   │   ├── ParseTemplateBehavior.class.php
│   │   │   │   │   ├── ReadHtmlCacheBehavior.class.php
│   │   │   │   │   ├── UpgradeNoticeBehavior.class.php
│   │   │   │   │   └── WriteHtmlCacheBehavior.class.php
│   │   │   │   ├── Core
│   │   │   │   │   ├── Action.class.php
│   │   │   │   │   ├── Log.class.php
│   │   │   │   │   ├── SaeMC.class.php
│   │   │   │   │   ├── Sms.class.php
│   │   │   │   │   └── Think.class.php
│   │   │   │   ├── Driver
│   │   │   │   │   └── Db
│   │   │   │   │   ├── DbMysql.class.php
│   │   │   │   │   └── DbMysqli.class.php
│   │   │   │   ├── Extend
│   │   │   │   │   ├── Driver
│   │   │   │   │   │   └── Cache
│   │   │   │   │   │   ├── CacheMemcache.class.php
│   │   │   │   │   │   └── CacheMemcache_sae.class.php
│   │   │   │   │   ├── Library
│   │   │   │   │   │   └── ORG
│   │   │   │   │   │   ├── Net
│   │   │   │   │   │   │   └── UploadFile_sae.class.php
│   │   │   │   │   │   └── Util
│   │   │   │   │   │   └── Image_sae.class.php
│   │   │   │   │   └── Tool
│   │   │   │   │   └── SaeCacheBuilder
│   │   │   │   │   └── runtime.php
│   │   │   │   └── Template
│   │   │   │   └── ThinkTemplate.class.php
│   │   │   ├── SaeImit
│   │   │   │   ├── config.php
│   │   │   │   ├── defines.php
│   │   │   │   ├── imit_functions.php
│   │   │   │   ├── ImitSqlite.class.php
│   │   │   │   ├── Lang.php
│   │   │   │   ├── Memcache.class.php
│   │   │   │   ├── SaeCounter.class.php
│   │   │   │   ├── sae.db
│   │   │   │   ├── SaeFetchurl.class.php
│   │   │   │   ├── sae_functions.php
│   │   │   │   ├── SaeImage.class.php
│   │   │   │   ├── SaeKV.class.php
│   │   │   │   ├── SaeKVClient.class.php
│   │   │   │   ├── SaeMail.class.php
│   │   │   │   ├── SaeMysql.class.php
│   │   │   │   ├── SaeObject.class.php
│   │   │   │   ├── SaeRank.class.php
│   │   │   │   ├── sae.sql
│   │   │   │   ├── SaeStorage.class.php
│   │   │   │   └── SaeTaskQueue.class.php
│   │   │   └── SaeImit.php
│   │   └── sae.php
│   ├── Library
│   │   └── ORG
│   │   ├── Crypt
│   │   │   ├── Base64.class.php
│   │   │   ├── Crypt.class.php
│   │   │   ├── Des.class.php
│   │   │   ├── Hmac.class.php
│   │   │   ├── Rsa.class.php
│   │   │   └── Xxtea.class.php
│   │   ├── Net
│   │   │   ├── Http.class.php
│   │   │   ├── IpLocation.class.php
│   │   │   └── UploadFile.class.php
│   │   └── Util
│   │   ├── ArrayList.class.php
│   │   ├── Auth.class.php
│   │   ├── CodeSwitch.class.php
│   │   ├── Cookie.class.php
│   │   ├── Date.class.php
│   │   ├── Debug.class.php
│   │   ├── HtmlExtractor.class.php
│   │   ├── Image
│   │   │   ├── Driver
│   │   │   │   ├── GIF.class.php
│   │   │   │   ├── ImageGd.class.php
│   │   │   │   └── ImageImagick.class.php
│   │   │   ├── readme.md
│   │   │   └── ThinkImage.class.php
│   │   ├── Image.class.php
│   │   ├── Input.class.php
│   │   ├── Page.class.php
│   │   ├── RBAC.class.php
│   │   ├── Session.class.php
│   │   ├── Socket.class.php
│   │   ├── Stack.class.php
│   │   └── String.class.php
│   └── README.txt
├── Lang
│   ├── en-us.php
│   └── zh-cn.php
├── Lib
│   ├── Behavior
│   │   ├── CheckRouteBehavior.class.php
│   │   ├── ContentReplaceBehavior.class.php
│   │   ├── LocationTemplateBehavior.class.php
│   │   ├── ParseTemplateBehavior.class.php
│   │   ├── ReadHtmlCacheBehavior.class.php
│   │   ├── ShowPageTraceBehavior.class.php
│   │   ├── ShowRuntimeBehavior.class.php
│   │   ├── TokenBuildBehavior.class.php
│   │   └── WriteHtmlCacheBehavior.class.php
│   ├── Core
│   │   ├── Action.class.php
│   │   ├── App.class.php
│   │   ├── Behavior.class.php
│   │   ├── Cache.class.php
│   │   ├── Db.class.php
│   │   ├── Dispatcher.class.php
│   │   ├── Log.class.php
│   │   ├── Model.class.php
│   │   ├── Think.class.php
│   │   ├── ThinkException.class.php
│   │   ├── View.class.php
│   │   └── Widget.class.php
│   ├── Driver
│   │   ├── Cache
│   │   │   ├── CacheFile.class.php
│   │   │   └── CacheMemcache.class.php
│   │   ├── Db
│   │   │   ├── DbMysql.class.php
│   │   │   └── DbMysqli.class.php
│   │   ├── TagLib
│   │   │   └── TagLibCx.class.php
│   │   └── Template
│   └── Template
│   ├── TagLib.class.php
│   └── ThinkTemplate.class.php
├── LICENSE.txt
├── logo.png
├── README.txt
├── ThinkPHP.php
└── Tpl
├── default_index.tpl
├── dispatch_jump.tpl
├── page_trace.tpl
└── think_exception.tpl

110 directories, 292 files

标签:

实例下载地址

自己写的thinkPHP小型论坛系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警