欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

minPHP-轻量级的PHP框架

程序员文章站 2022-05-04 08:30:09
...
github下载:https://github.com/phillipsdata/minphp


来源:http://my.oschina.net/rain21/blog/477931



结构:

/app    /controllers    - where all controllers are to be placed    /models         - where all models are to be placed    /views          - where all views are to be placed        /default    - a collection of related display components            /css            /images            /javascript/cache              - where cached views are stored (must be writable to use)/components         - where components are placed/config             - where configuration files are to be stored/helpers            - where all helpers are located/language           - each language has its own directory in here    /en_us          - the default language directory/lib                - where all core minPHP files are located/plugins            - where all minPHP plugins are stored/vendors            - where vendor code is placed (i.e. third party libraries)


数据库查询:

首先配置config/database.php

select()->from("user")->where("id", "=", 1)->numResults();		$rs=$user->select()->from("user")->fetchAll();		print_r($rs);	}		//show	public function show(){		echo date('Y-m-d H:i:s',time());		return false;	}}?>