GBDT和分类模型评估(算法角度)GBDT和分类模型评估(算法角度)
视图过滤
可以对视图的渲染输出进行过滤<?php
namespace app\index\controller;
use think\facade\View;
class Index
{
public function index()
{
// 使用视图输出过滤
return View::filter(function($content){
return str_replace("\r\n",'
',$content);
})->fetch();
}
}
如果需要进行全局过滤,你可以在初始化方法中使用:<?php
namespace app\index\controller;
use think\facade\View;
class Index
{
protected function initialize()
{
View::filter(function($content){
return str_replace("\r\n",'
',$content);
});
}
public function index()
{
// 使用视图输出过滤
return View::fetch();
}
}
如果使用view助手函数进行模板渲染输出的话,可以使用下面的方式<?php
namespace app\index\controller;
class Index
{
public function index()
{
// 使用视图输出过滤
return view()->filter(function($content){
return str_replace("\r\n",'
',$content);
});
}
}
任务
?不会了怎么办