ホームページ  >  記事  >  バックエンド開発  >  minPHP - 軽量の PHP フレームワーク

minPHP - 軽量の PHP フレームワーク

WBOY
WBOYオリジナル
2016-06-23 13:30:571212ブラウズ

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


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。