JianYuLunTan_v1.7.1

所属分类:网址推荐
开发工具:C/C++
文件大小:2319KB
下载次数:0
上传日期:2020-05-30 00:54:26
上 传 者6881373
说明:  剑鱼论坛(JianYuLunTan)开源轻论坛。摘抄自“站长之家”
(Jian Yu Lun Tan open source light forum. Excerpt from "home of stationmaster")

文件列表:
.htaccess (224, 2020-02-23)
data (0, 2020-05-28)
data\uploads (0, 2020-05-28)
fmwk (0, 2020-05-28)
fmwk\.htaccess (13, 2020-02-23)
fmwk\.travis.yml (991, 2020-02-23)
fmwk\base.php (2728, 2020-02-23)
fmwk\codecov.yml (196, 2020-02-23)
fmwk\composer.json (869, 2020-02-23)
fmwk\console.php (767, 2020-02-23)
fmwk\CONTRIBUTING.md (4512, 2020-02-23)
fmwk\convention.php (10915, 2020-02-23)
fmwk\helper.php (18300, 2020-02-23)
fmwk\lang (0, 2020-05-28)
fmwk\lang\zh-cn.php (12227, 2020-02-23)
fmwk\library (0, 2020-05-28)
fmwk\library\catfish (0, 2020-05-28)
fmwk\library\catfish\Catfish.php (38183, 2020-05-28)
fmwk\library\catfish\Tree.php (2250, 2020-02-23)
fmwk\library\think (0, 2020-05-28)
fmwk\library\think\App.php (22703, 2020-02-23)
fmwk\library\think\Build.php (8432, 2020-02-23)
fmwk\library\think\cache (0, 2020-05-28)
fmwk\library\think\Cache.php (6493, 2020-02-23)
fmwk\library\think\cache\driver (0, 2020-05-28)
fmwk\library\think\cache\Driver.php (6355, 2020-02-23)
fmwk\library\think\cache\driver\File.php (7716, 2020-02-23)
fmwk\library\think\cache\driver\Lite.php (5343, 2020-02-23)
fmwk\library\think\cache\driver\Memcache.php (5379, 2020-02-23)
fmwk\library\think\cache\driver\Memcached.php (5852, 2020-02-23)
fmwk\library\think\cache\driver\Redis.php (5689, 2020-02-23)
fmwk\library\think\cache\driver\Sqlite.php (6341, 2020-02-23)
fmwk\library\think\cache\driver\Wincache.php (4237, 2020-02-23)
fmwk\library\think\cache\driver\Xcache.php (4300, 2020-02-23)
fmwk\library\think\Collection.php (11635, 2020-02-23)
fmwk\library\think\config (0, 2020-05-28)
fmwk\library\think\Config.php (6743, 2020-02-23)
fmwk\library\think\config\driver (0, 2020-05-28)
fmwk\library\think\config\driver\Ini.php (873, 2020-02-23)
... ...

ThinkPHP 5.0 =============== [![StyleCI](https://styleci.io/repos/48530411/shield?style=flat&branch=master)](https://styleci.io/repos/48530411) [![Build Status](https://travis-ci.org/top-think/framework.svg?branch=master)](https://travis-ci.org/top-think/framework) [![codecov.io](http://codecov.io/github/top-think/framework/coverage.svg?branch=master)](http://codecov.io/github/github/top-think/framework?branch=master) [![Total Downloads](https://poser.pugx.org/topthink/framework/downloads)](https://packagist.org/packages/topthink/framework) [![Latest Stable Version](https://poser.pugx.org/topthink/framework/v/stable)](https://packagist.org/packages/topthink/framework) [![Latest Unstable Version](https://poser.pugx.org/topthink/framework/v/unstable)](https://packagist.org/packages/topthink/framework) [![License](https://poser.pugx.org/topthink/framework/license)](https://packagist.org/packages/topthink/framework) ThinkPHP5在保持快速开发和大道至简的核心理念不变的同时,PHP版本要求提升到5.4,优化核心,减少依赖,基于全新的架构思想和命名空间实现,是ThinkPHP突破原有框架思路的颠覆之作,其主要特性包括: + 基于命名空间和众多PHP新特性 + 核心功能组件化 + 强化路由功能 + 更灵活的控制器 + 重构的模型和数据库类 + 配置文件可分离 + 重写的自动验证和完成 + 简化扩展机制 + API支持完善 + 改进的Log类 + 命令行访问支持 + REST支持 + 引导文件支持 + 方便的自动生成定义 + 真正惰性加载 + 分布式环境支持 + 支持Composer + 支持MongoDb > ThinkPHP5的运行环境要求PHP5.4以上。 详细开发文档参考 [ThinkPHP5完全开发手册](http://www.kancloud.cn/manual/thinkphp5) 以及[ThinkPHP5入门系列教程](http://www.kancloud.cn/special/thinkphp5_quickstart) ## 目录结构 初始的目录结构如下: ~~~ www WEB部署目录(或者子目录) ├─application 应用目录 │ ├─common 公共模块目录(可以更改) │ ├─module_name 模块目录 │ │ ├─config.php 模块配置文件 │ │ ├─common.php 模块函数文件 │ │ ├─controller 控制器目录 │ │ ├─model 模型目录 │ │ ├─view 视图目录 │ │ └─ ... 更多类库目录 │ │ │ ├─command.php 命令行工具配置文件 │ ├─common.php 公共函数文件 │ ├─config.php 公共配置文件 │ ├─route.php 路由配置文件 │ ├─tags.php 应用行为扩展定义文件 │ └─database.php 数据库配置文件 │ ├─public WEB目录(对外访问目录) │ ├─index.php 入口文件 │ ├─router.php 快速测试文件 │ └─.htaccess 用于apache的重写 │ ├─thinkphp 框架系统目录 │ ├─lang 语言文件目录 │ ├─library 框架类库目录 │ │ ├─think Think类库包目录 │ │ └─traits 系统Trait目录 │ │ │ ├─tpl 系统模板目录 │ ├─base.php 基础定义文件 │ ├─console.php 控制台入口文件 │ ├─convention.php 框架惯例配置文件 │ ├─helper.php 助手函数文件 │ ├─phpunit.xml phpunit配置文件 │ └─start.php 框架入口文件 │ ├─extend 扩展类库目录 ├─runtime 应用的运行时目录(可写,可定制) ├─vendor 第三方类库目录(Composer依赖库) ├─build.php 自动生成定义文件(参考) ├─composer.json composer 定义文件 ├─LICENSE.txt 授权说明文件 ├─README.md README 文件 ├─think 命令行入口文件 ~~~ > router.php用于php自带webserver支持,可用于快速测试 > 切换到public目录后,启动命令:php -S localhost:8888 router.php > 上面的目录结构和名称是可以改变的,这取决于你的入口文件和配置参数。 ## 命名规范 ThinkPHP5的命名规范遵循`PSR-2`规范以及`PSR-4`自动加载规范。 ## 参与开发 注册并登录 Github 帐号, fork 本项目并进行改动。 更多细节参阅 [CONTRIBUTING.md](CONTRIBUTING.md) ## 版权信息 ThinkPHP遵循Apache2开源协议发布,并提供免费使用。 本项目包含的第三方源码和二进制文件之版权信息另行标注。 版权所有Copyright 2006-2018 by ThinkPHP (http://thinkphp.cn) All rights reserved。 ThinkPHP 商标和著作权所有者为上海顶想信息科技有限公司。 更多细节参阅 [LICENSE.txt](LICENSE.txt)

近期下载者

相关文件


收藏者