Maison > Questions et réponses > le corps du texte
index.php code content
<?php
namespace appindexcontroller;
use thinkController;
class Index
{
public function index()
{
return 'php';
}
public function hello()
{
return $this->fetch();
}
}
Voici le contenu de hello.html
<!doctype html>
<html lang="fr">
<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>Je suis le fichier modèle correspondant à la méthode hello dans le contrôleur d'index dans le modèle d'index</h2>
</body>
</html>