index.php-Codeinhalt
<?php
namespace appindexcontroller;
use thinkController;
class Index
{
public function index()
{
return 'php';
}
public function hello()
{
return $this->fetch();
}
}
Dies ist der Inhalt von hello.html
<!doctype html>
<html lang="en">
<head>
< ;meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, Maximum-scale=1.0, Minimum- scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body> ;
<h2>Ich bin die Vorlagendatei, die der Hallo-Methode im Index-Controller in der Indexvorlage entspricht</h2>
</body>
</html>
class Index 没有继承 Controller
开启DEBUG 了解详细错误 原因