码迷,mamicode.com
首页 > Web开发 > 详细

minPHP---轻量级的PHP框架

时间:2015-07-13 16:24:56      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:

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

<?php

/**
 * @package minPHP
 * @subpackage minPHP.app.controllers
 */
class Main extends AppController {
	
	//index
	public function index(){
		$user=new Record();
		//$rs=$user->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;
	}
}
?>


minPHP---轻量级的PHP框架

标签:

原文地址:http://my.oschina.net/rain21/blog/477931

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!