ホームページ >バックエンド開発 >PHPチュートリアル >php skymvc 軽量でシンプルな php_PHP チュートリアル

php skymvc 軽量でシンプルな php_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-21 15:27:25826ブラウズ

修正されたフレームワークは、主に複数のプログラマー間の共同開発を実現するために使用され、mvc 開発モデルの実装には mvc 開発手法が採用されており、フレームワーク自体の拡張が容易です。 Skymvc は、スカイネット プロジェクトの基本フレームワークとして、使いやすさ、学習の容易さ、共同開発という優れた伝統を遵守し、優れた PHP
mvc フレームワークの作成に取り組んでいます。どなたでもご提案をお待ちしております。
1. 設定ファイルの作成 skyMVC は Web サイト ディレクトリの自動作成をサポートしています。 http://locahost/skymvc/install.php と入力すると、
ファイル ディレクトリが自動的に作成されます。作成後に再作成したい場合は、install.lock ファイルを削除すれば可能です。
自動作成を推奨します。
手動で作成することもできます: ディレクトリはカスタマイズ可能です
ディレクトリをカスタマイズする場合は、それに応じてプログラムを構成する必要があります
管理バックエンドディレクトリ
admin/model
admin/ctrl
attach
アップロードされた添付ファイルディレクトリ
ctrl制御ファイルディレクトリ
dataディレクトリ
data/config.php
設定ファイル
data/cache キャッシュディレクトリ
data/cache/css
css キャッシュ
data/cache/file ファイルキャッシュ
data/cache/tpl テンプレートキャッシュ
data/cache/js
js キャッシュ
モデルモデルファイルディレクトリ
tplテンプレートディレクトリ
tpl/adminバックエンドテンプレート
tpl/default
デフォルトテンプレート
jsディレクトリ
pluginプラグインディレクトリ
admin.phpバックエンドエントリーファイル
index.phpフロントエンドエントリーファイル
2.ファイル


skymvc は単一の入口モードを使用しますが、これが唯一の入口ではなく、2 つの入口を使用することをお勧めします。 1 つは正面玄関、もう 1 つは裏口です。
1. フロントエンドエントリーファイルの例:index.php ファイル名は、インデックスまたは
デフォルトを推奨するようにカスタマイズできます

コードをコピーします コードは次のとおりです:

require
" data/config.php"; //設定ファイルをロード
require("skymvc/skymvc.php");//フレームワークファイルを参照
//コントローラーが合法かどうかを判定
$_GET['m']=isset ($_GET['m'])
&&
in_array($_GET['m'],array('index'))?$_GET['m']:'index'
//判定終了
require_once (CTRL_DIR."/{$_GET['m']}.ctrl.php");
$classname
= $_GET['m'].'Control'
$control = new
$classname(); //疑似静的を設定します
$control-> ;tpl->rewrite=false;
$control->tpl->rewrite_rule=array(array("/index.php/i"),array("index .html"));
//疑似静的終了を設定します
$method=isset($_GET['a'])
&& Method_exists($control,'on'.$_GET['a'])?
'on '.$_GET['a']:" onDefault";
$control->$method();


2. ファイル名はカスタマイズ可能です


コードをコピーします コードは次のとおりです:
< ;?php
require
"data/config.php";
$_GET['m'] =isset($_GET['m'])
&&
in_array( $_GET['m'],array('index','article'))?$_GET['m']:'index'; (ADMIN_DIR."/".CTRL_DIR."/{$_GET['m']}.ctrl.php");
$classname
= $_GET['m'].'Control' = 新しい
$classname();
//疑似静的を設定します
$control->tpl->currdir="admin"; tpl->rewrite_on=true;
$control->tpl->rewrite_rule=array("/index.php/","index.html"));
$method=isset($_GET[' a'])
&& method_exists($control,'on'.$ _GET['a'])
'on'.$_GET['a']:"onDefault"; )
?>


説明: フロントエントリーファイルとバックエントリーファイルの違いは大きくありませんが、主にモデルファイルとコントロールファイルが配置されているフォルダーにあります。件3. コントローラファイル 控 コードをコピーします:

& & lt;? PHP
Class IndexControl Extends Skymvc {
function
___ConStruct () {
$ this- & gt; }
indexControl()
{
parent::__construct();//親クラスの初期化
$this->loadModel("index");
//Backend//$this->loadAdminModel("index") ); } function
onDefault()
{

$this->tpl->assign("ようこそ","skymvc へようこそ、一緒に働きましょう!"); ;assign("who",$_ENV['indexModel']->test());
//バックエンド
//$this->tpl->assign("who",$ _ENV['admin_indexModel') ]->test());
$this->tpl->display("index");
?>


4. モデル ファイルは、もちろんデータの処理に使用されます。 、他のロジックも処理できますが、お勧めしません。ファイル命名規則: class.model.php
例:index.model.php
モデル ファイルはモデル ディレクトリの下にあります: モデル ディレクトリなど
例:index.model.php



コードをコピーします

コードは次のとおりです:

class
indexModel
{
public $base;
__construct(&$base)
{
$this->indexModel($base)
}
function
indexModel(&$base); )
{
$this->base=$base;
$this->db=$base->db;
function
test()
{
echo "これはモデルテストです"; }

}
?>


モデルファイル: 表と裏は同じですが、格納場所が異なります
5.hello world
kymvc フレームワークの hello word!
ディレクトリが自動的に作成される場合。
データベースの設定
index.php
エントリーファイルが書き込まれます。
index.php content



コードをコピーします
コードは次のとおりです: require
"data/config.php";//設定ファイルをロードします
require("skymvc/ skymvc.php") ;//フレームワークファイルを参照します
//コントローラーが正当かどうかを判断します
$_GET['m']=isset($_GET['m'])
&&
in_array($_GET['m '],array('index ','article'))?$_GET['m']:'index';//index.phpのエントリにあるモジュールを全てarray()に入れる
//判定終了
require_once(CTRL_DIR." /{$_GET['m']}.ctrl.php");
$classname
= $_GET['m'].'Control'
$control = new
$classname(); ;
$method=isset ($_GET['a']) &&
method_exists($control,'on'.$_GET['a'])
'on'.$_GET['a']:"onDefault ";
$control- >$method();?>


ctrl ディレクトリに
hello.ctrl.php ファイルを作成します



コードをコピーします
コードは次のとおりです: class
helloControl extends skymvc
{

function __construct()
{
$this->helloControl()
}
function
helloControl()
{
parent::__construct();
$ this ->loadModel("hello");//モデルのロード
任意のモデルをロードできますが、同じクラスのモデルはロードできません
}
//関数のデフォルトのアクション命名仕様name
function
onDefault()
{
echo "hello world
"; $this->smarty->display("hello.html")
}
//m=hello、a=test の場合
実行次の関数
function
onTest() {
$this->tpl->assign("test",$_ENV['helloModel']->gettest());

$this->tpl-> >display("hello.html" ;
$base;
function
__construct(&$base)
{
$this->helloModel($base);
}
function
helloModel(&$base)
{
$this->base=$base ;
$this->db=$base->$db; } //上記の function gettest(){ return $this- >db->getRow("select * from test
limit 1");//データを読み取る
}
}
?>


tpl ディレクトリに hello.html を作成する



コードをコピーする

コードは次のとおりです:


PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1 -transitional.dtd">


content ="text/html; charset=gb2312"
/>
無題ドキュメント</head> <br><body> これは、Hello World!テスト例: {loop $test $t} { $t} <br>{/loop} <br></body> <br> </div> <br>skymvc ダウンロード アドレス <br> <div class="codetitle"> <span style="CURSOR: pointer" onclick="doCopy('code41477')"><u>http://www.bkjia.com/PHPjc/323756.html</u></span>www.bkjia.com</div> <div class="codebody" id="code41477">tru​​e<br><br>http://www.bkjia.com/PHPjc/323756.html<br><br>技術記事<br><br>修正されたフレームワークは主に複数のプログラマー間の共同開発を実現するために使用され、mvc 開発モデルの実装は mvc 開発手法を採用しており、フレームワーク自体の拡張が容易です。 skymvc はスカイネット プロジェクトの基本フレームワークとして機能します...<br><br><br><br> <br><br> </div> </div></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>声明:</span><div>この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。</div></div></div><div class="nphpSytBox"><span>前の記事:<a class="dBlack" title="PHPデザインパターンDAO(データアクセスオブジェクトパターン)_PHPチュートリアル" href="https://m.php.cn/ja/faq/309151.html">PHPデザインパターンDAO(データアクセスオブジェクトパターン)_PHPチュートリアル</a></span><span>次の記事:<a class="dBlack" title="PHPデザインパターンDAO(データアクセスオブジェクトパターン)_PHPチュートリアル" href="https://m.php.cn/ja/faq/309153.html">PHPデザインパターンDAO(データアクセスオブジェクトパターン)_PHPチュートリアル</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>関連記事</h2><em><a href="https://m.php.cn/ja/article.html" class="bBlack"><i>続きを見る</i><b></b></a></em><div class="clear"></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-6t+ed+2i-1n-4w" data-ad-client="ca-pub-5902227090019525" data-ad-slot="8966999616"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><ul class="nphpXgwzList"><li><b></b><a href="https://m.php.cn/ja/faq/1.html" title="cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法" class="aBlack">cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/1.html" title="cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法" class="aBlack">cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/1.html" title="cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法" class="aBlack">cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/1.html" title="cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法" class="aBlack">cURL を使用して PHP で Get リクエストと Post リクエストを実装する方法</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ja/faq/2.html" title="正規表現内のすべての式記号 (概要)" class="aBlack">正規表現内のすべての式記号 (概要)</a><div class="clear"></div></li></ul></div></div><ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="5027754603"></ins><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!</p></div><div class="footermid"><a href="https://m.php.cn/ja/about/us.html">私たちについて</a><a href="https://m.php.cn/ja/about/disclaimer.html">免責事項</a><a href="https://m.php.cn/ja/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body><!-- Matomo --><script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '9']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script><!-- End Matomo Code --></html>