[제어] 부분:
Yii::app()->user->setFlash('commentSubmitted ','显示跳转后的信息'); $this->redirect('list.m'); //页面跳转,list.m是因为写重写了router
추천 튜토리얼: yii Framework
[보기] 부분:
<?php if(Yii::app()->user->hasFlash('commentSubmitted ')): ?> <div class="flash-success"> <?php echo Yii::app()->user->getFlash('commentSubmitted '); ?> </div> <?php endif; ?>
더 많은 프로그래밍 관련 내용은 PHP 중국어 홈페이지 프로그래밍 입문 칼럼을 주목해주세요!
위 내용은 yii에서 해당 페이지로 이동하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!