Question:Discuss the function of clips in YII. How to use clip?
Answer One of the Yii features you can use in your views is clips. The basic idea is that you can record some output and then reuse it later in a view. Example:
<?php $this->beginClip('footer')?>This application was built with Yii.<?php $this->endClip()?>Page: 68-69
+ Report
Discuss the function of clips in YII. How to use clip?