2019/01/20 yii输出hello world

1.yii-application/frontend/controller/siteController.php

在最后添加

public function actionSay($message='hello'){

return $this->render('say',['message'=>$message]);

}

2.yii-application/frontend/views/site/say.php

use yii/helpers/Html;

?>

3.测试:url:y2aa-frontend.test/index.php?r=site/say&message=Hello+World

显示:Hello World

你可能感兴趣的:(yii2)