index.php 코드 내용
<?php
namespace appindexcontroller;
thinkController 사용;
class Index
{
공용 함수 index()
{
return 'php';
}
공용 함수 hello()
{
return $this->fetch();
}
}
이것은 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, 최소- scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>문서</title>
</head>
<body> ;
<h2>I는 인덱스 템플릿</h2>
</body>
</html>