尝试学习 PHP MVC。到目前为止一切顺利,直到这一刻。我的 ./controllers/index.php 中有这样的功能
<?php
class Index extends Controller {
function __construct() {
parent::__construct();
}
function showFeeds() {
return 'done';
}
}
?>
我知道如何调用模型类并在模型类上运行 showFeed()。我的问题是如何在我的 ./views/index.php 上打印“完成”。有什么选择。
我已经尝试了下面列出的一些。但没有运气。
- 父::showFeeds()
- $this->controller->showFeeds();