CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码

文件名称:crossphp-full

  • 所属分类:
  • 标签属性:
  • 上传时间:
    2017-03-31
  • 文件大小:
    99.73kb
  • 已下载:
    0次
  • 提 供 者:
  • 相关连接:
  • 下载说明:
    别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容来自于网络,使用问题请自行百度

简洁高效,轻量易扩展的PHP5.3+ 开发框架

轻量无依赖,HMVC,注释配置,路由别名,PSR标准,Layer布局

一. 需求

PHP5.3以上版本,mysql需要PDO支持。

二. 简介

支持PSR标准,支持composer。HMVC,支持注释配置(支持自定义,只有想不到,没有做不到)。 Layer布局支持,更换模板更简单。路由别名(先写代码,后定义,比如rul:/Controoooooller/Actiooooon/5,可以通过别名指定为:/d/5)。 全局的异常处理系统及错误展示,在开发中可以快速定位到具体的代码行数。简单的Mysql查询。欢迎各种性能对比测试。

三. 安装

通过 http://localhost/skeleton/htdocs/web 来访问默认的web页面

正常访问 http://localhost/skeleton/htdocs/admin, 需要修改你的数据库配置skeleton/config/db.config.php,并导入skeleton/sql/admin/back.sql文件。-Simple and efficient, lightweight and easy to expand the PHP5.3+ framework

Lightweight, HMVC, annotation configuration, routing alias, PSR standard, Layer layout

One demand

PHP5.3 or above, MySQL requires PDO support.

Two. Introduction

Support PSR standard, support composer. HMVC, support for the notes configuration (support custom, only unexpected, not done). Layer layout support, easier to replace the template. Routing aliases (first write code, after the definition, such as rul:/Controoooooller/Actiooooon/5, can be specified by alias: /d/5). Global exception handling system and error display, in the development can quickly locate the specific number of lines of code. Simple Mysql query. Welcome to the performance comparison test.

Three. Installation

Access to the default web page by http://localhost/skeleton/htdocs/web

Normal access to http://localhost/skeleton/htdocs/admin, you need to modify your configuration skeleton/config/db.config.php, and import skeleton/sql/admin/b
(系统自动生成,下载前可以参看下载内容)

下载文件列表

crossphp/
crossphp/.gitignore
crossphp/LICENSE
crossphp/README.md
crossphp/boot.php
crossphp/composer.json
crossphp/docs/
crossphp/docs/README.md
crossphp/src/
crossphp/src/Auth/
crossphp/src/Auth/CookieAuth.php
crossphp/src/Auth/SessionAuth.php
crossphp/src/Cache/
crossphp/src/Cache/Driver/
crossphp/src/Cache/Driver/FileCacheDriver.php
crossphp/src/Cache/Driver/MemcacheDriver.php
crossphp/src/Cache/Driver/RedisDriver.php
crossphp/src/Cache/Request/
crossphp/src/Cache/Request/Memcache.php
crossphp/src/Cache/Request/RedisCache.php
crossphp/src/Cache/RequestCache.php
crossphp/src/Core/
crossphp/src/Core/Annotate.php
crossphp/src/Core/Application.php
crossphp/src/Core/ArrayMap.php
crossphp/src/Core/Config.php
crossphp/src/Core/CrossArray.php
crossphp/src/Core/Delegate.php
crossphp/src/Core/FrameBase.php
crossphp/src/Core/Helper.php
crossphp/src/Core/HttpAuth.php
crossphp/src/Core/Loader.php
crossphp/src/Core/Rest.php
crossphp/src/Core/Router.php
crossphp/src/DB/
crossphp/src/DB/Connecter/
crossphp/src/DB/Connecter/BaseConnecter.php
crossphp/src/DB/Connecter/MySQLConnecter.php
crossphp/src/DB/Connecter/PgSQLConnecter.php
crossphp/src/DB/Connecter/SQLiteConnecter.php
crossphp/src/DB/DBFactory.php
crossphp/src/DB/Drivers/
crossphp/src/DB/Drivers/CouchDriver.php
crossphp/src/DB/Drivers/MongoDriver.php
crossphp/src/DB/Drivers/PDOSqlDriver.php
crossphp/src/DB/SQLAssembler/
crossphp/src/DB/SQLAssembler/MySQLAssembler.php
crossphp/src/DB/SQLAssembler/PgSQLAssembler.php
crossphp/src/DB/SQLAssembler/SQLAssembler.php
crossphp/src/DB/SQLAssembler/SQLiteAssembler.php
crossphp/src/Exception/
crossphp/src/Exception/CacheException.php
crossphp/src/Exception/CoreException.php
crossphp/src/Exception/CrossException.php
crossphp/src/Exception/FrontException.php
crossphp/src/Exception/_tpl/
crossphp/src/Exception/_tpl/cli_error.tpl.php
crossphp/src/Exception/_tpl/front_error.tpl.php
crossphp/src/Http/
crossphp/src/Http/Request.php
crossphp/src/Http/Response.php
crossphp/src/I/
crossphp/src/I/CacheInterface.php
crossphp/src/I/HttpAuthInterface.php
crossphp/src/I/PDOConnecter.php
crossphp/src/I/RequestCacheInterface.php
crossphp/src/I/RouterInterface.php
crossphp/src/I/SqlInterface.php
crossphp/src/Lib/
crossphp/src/Lib/Array2XML.php
crossphp/src/Lib/Document/
crossphp/src/Lib/Document/CallTree.php
crossphp/src/Lib/Document/CallTreeToHTML.php
crossphp/src/Lib/Document/HTML.php
crossphp/src/Lib/StringToPHPStream.php
crossphp/src/MVC/
crossphp/src/MVC/Controller.php
crossphp/src/MVC/Module.php
crossphp/src/MVC/View.php
crossphp/src/Module/
crossphp/src/Module/SQLModule.php
crossphp/src/Runtime/
crossphp/src/Runtime/ClosureContainer.php
crossphp/tests/
crossphp/tests/MainTest.php
crossphp/tests/README.md
crossphp/tests/project/
crossphp/tests/project/app/
crossphp/tests/project/app/test/
crossphp/tests/project/app/test/controllers/
crossphp/tests/project/app/test/controllers/Main.php
crossphp/tests/project/app/test/init.php
crossphp/tests/project/app/test/templates/
crossphp/tests/project/app/test/templates/default/
crossphp/tests/project/app/test/templates/default/default.layer.php
crossphp/tests/project/app/test/views/
crossphp/tests/project/app/test/views/MainView.php
crossphp/说明.htm

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 搜珍网是交换下载平台,只提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。更多...
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或换浏览器;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*快速评论: 推荐 一般 有密码 和说明不符 不是源码或资料 文件不全 不能解压 纯粹是垃圾
*内  容:
*验 证 码:
搜珍网 www.dssz.com