我正在尝试学习 MVC 模式,(但没有模型,因为当我拥有控制器时,我看不到我可以使用它们)。
所以我想在我的视图中显示一些内容。我怎么做?
这是我处理索引的控制器:
<?php
class Index extends Controller {
function __construct() {
parent::__construct();
$this->view->render('mainpage/index');
}
public function wynik($arg) {
echo $arg;
}
}
$klasa = new Index();
?>
我想在我看来调用函数 wynik($arg) 。我怎样才能做到这一点?我的控制器库如下所示:
<?php
class Controller {
function __construct() {
$this->view = new View();
}
}
?>
在 views/mainpage/index.php 我正在尝试这样的事情:
<?php
echo $klasa->wynik('abc');
// tried this too:
$this->wynik('abc');
?>
但它不起作用:
注意:未定义变量:第 2 行 C:\wamp\www\lvc\views\mainpage\index.php 中的 klasa
和
致命错误:在第 2 行的 C:\wamp\www\lvc\views\mainpage\index.php 中的非对象上调用成员函数 wynik()
这是视图库:
<?php
class View {
function __construct() {
}
public function render($name, $noInclude = false) {
if ($noInclude == true) {
require 'views/' . $name . '.php';
} else {
require 'views/header.php';
require 'views/' . $name . '.php';
require 'views/footer.php';
}
}
}
?>
我在想 - 是的,它在 View() 类中搜索 wynik() 函数,这就是它出错的原因。我希望视图在我的控制器中搜索功能。我怎样才能做到这一点?