在symfony2中渲染数据时删除第一行

我目前正在开发symfony2框架。我想要在一个文件中呈现文件的html数据。在symfony2中渲染数据时删除第一行

我的代码:

$myfile = fopen("somefile.html", "w"); 

$data = $this->render("somefile.html.twig");

fwrite($myfile, $data);

这工作正常,但除了与HTML数据,我得到下面的行
“HTTP/1.0 200 OK
缓存控制:无缓存
日期:           星期二,2015年6月2日7时五十〇分十六秒GMT”

的盯着行我想除去叔下摆是可能通过symfony或我有使用正则表达式?

回答:

尝试使用renderView()而不是render()。

$myfile = fopen("somefile.html", "w"); 

$data = $this->renderView("somefile.html.twig");

fwrite($myfile, $data);

以上是 在symfony2中渲染数据时删除第一行 的全部内容, 来源链接: utcz.com/qa/266478.html

回到顶部