Rumah  >  Artikel  >  pembangunan bahagian belakang  >  minPHP-轻量级的PHP框架

minPHP-轻量级的PHP框架

WBOY
WBOYasal
2016-06-23 13:30:571215semak imbas

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;	}}?>


Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn