gpt4 book ai didi

PHP MVC 从 View 调用 Controller 函数

转载 作者:行者123 更新时间:2023-12-02 04:59:07 29 4
gpt4 key购买 nike

正在尝试学习 PHP MVC。到目前为止一直很好,直到这一刻。我的 ./controllers/index.php 中有这样的功能

<?php
class Index extends Controller {

function __construct() {
parent::__construct();
}

function showFeeds() {
return 'done';
}

}
?>

我知道如何调用模型类并在模型类上运行 showFeed()。我的问题是如何在我的 ./views/index.php 上打印“完成”。有哪些选择。

我已经尝试了下面列出的其中一些。但没有运气。

  1. parent::showFeeds()
  2. $this->controller->showFeeds();

最佳答案

终于解决了我的问题

页面:/controllers/index.php

<?php
class Index extends Controller {

function __construct () {
parent::__construct ();
}

function showFeeds () {
return 'done';
}

}
?>

页面:./views/index/index.php

<?php
$_index = new Index ();
$params = $_index -> showFeeds ();
?>

关于PHP MVC 从 View 调用 Controller 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17425765/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com