您好,登錄后才能下訂單哦!
利用php怎么編寫一個MVC框架?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
MVC的工作流程如下:
1. 瀏覽者->調(diào)用控制器,對此發(fā)出指令
2. 控制器->按指令選取一個合適的模型
3. 模型->按照控制器指令選取相應(yīng)的數(shù)據(jù)
4. 控制器->按指令選取相應(yīng)的視圖
5. 視圖->把第三步取到的數(shù)據(jù)按用戶想要的樣子顯示出來
簡單地實例開發(fā)如下,首先進(jìn)行第一個控制器的開發(fā) 我們在此命名規(guī)范如下testController.class.php
<?php class testController{ function show(){ } } ?>
其次書寫一個簡單地模型如下testModel.class.php
<?php class testModel{ function get(){ return "hello world"; } } ?>
第一個視圖文件的創(chuàng)建testView.class.php 是為了呈現(xiàn)數(shù)據(jù)所存在的
<?php class testVies{ function display($data){ echo $data; } } ?>
下面我們要做的就是按照之前所說的五步進(jìn)行程序的測試:代碼如下 測試文件的建立test.php
<?php require_once('testController.class.php'); require_once('testModel.class.php'); require_once('testView.class.php'); $testController = new testController();//調(diào)用控制器 $testController->show(); ?>
<?php class testController{ function show(){ $testModel = new testModel();//選取合適的模型 $data = $testModel->get();//獲取相應(yīng)的數(shù)據(jù) $testView = new testView();//選擇相應(yīng)的視圖 $testView->display($data);//展示給用戶 } } ?>
而后我們?yōu)g覽器打開test.php 會顯示為hello world,說明我們已經(jīng)成功了。
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。