試圖學習PHP MVC。到目前爲止,到目前爲止這麼好。我有這樣的功能在我./controllers/index.phpPHP MVC呼叫控制器功能從視圖
<?php
class Index extends Controller {
function __construct() {
parent::__construct();
}
function showFeeds() {
return 'done';
}
}
?>
我知道如何調用模型類和模型類運行showFeed()。我的問題是如何在我的./views/index.php上打印'done'。那有什麼選擇。
我已經嘗試了下面列出的其中一些。但沒有運氣。
- 父:: showFeeds()
- $這 - >控制器 - > showFeeds();
爲什麼會您查看呼叫控制器上的方法? –
哪個框架是這個?codeigniter? –
我知道主意。我做了我認爲正確的事情。我錯了嗎?有沒有其他方法可以在我的./view/index.php中打印showFeed()返回值 – AmilaDG