Controller目录下创建TestController.php
아래 코드를 복사하세요. yii는 tp와 동일하며 전체 네임스페이스가 있습니다
<?php namespace app\controllers; use yii\web\Controller; class SiteController extends Controller { // ...existing code... public function actionSay($message = 'Hello World') { return $this->render('say', ['message' => $message]); } }
view 폴더에 test 폴더를 생성하고 그 폴더 아래에 say.php를 생성하세요
다음 코드를 say.php에 복사하세요
46d32f1990b68e4dcdc5ffa50c980a0e f62bfd67e0b24503a85b3b91d1829d4e
첫 번째 페이지인 url/basic/web/index.php?r=test%2Fsay를 방문하세요. 테스트는 컨트롤러이고 메소드는 메소드입니다.
헤더 파일도 함께 제공되니 참고하시고, 수정하는 방법은 나중에 소개해드리겠습니다.