加载中...

视图过滤


视图过滤

可以对视图的渲染输出进行过滤

  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. class Index extends Controller
  5. {
  6. public function index()
  7. {
  8. // 使用视图输出过滤
  9. return $this->filter(function($content){
  10. return str_replace("\r\n",'<br/>',$content);
  11. })->fetch();
  12. }
  13. }

如果需要进行全局过滤,你可以在初始化方法中使用:

  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. class Index extends Controller
  5. {
  6. protected function initialize()
  7. {
  8. $this->view->filter(function($content){
  9. return str_replace("\r\n",'<br/>',$content);
  10. });
  11. }
  12. public function index()
  13. {
  14. // 使用视图输出过滤
  15. return $this->fetch();
  16. }
  17. }

如果使用view助手函数进行模板渲染输出的话,可以使用下面的方式

  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. class Index extends Controller
  5. {
  6. public function index()
  7. {
  8. // 使用视图输出过滤
  9. return view()->filter(function($content){
  10. return str_replace("\r\n",'<br/>',$content);
  11. });
  12. }
  13. }

还没有评论.