从字符串到html的代码

时间:2015-01-10 17:05:14

标签: php html twig

我目前正在编写邮政系统的代码。帖子被写入文件,我从文件中读回来向访问者展示。

php很好,可以从文件中读取所有内容。

implode('', file(__DIR__ .'../docs/posts/'. next($right)  . '.txt')

之后我想将我从文件中读取的代码显示到我的twig模板中

<article class="newsposttext">{{ nptext }}</article>

这也显示了我想要的文字和正确的样式,尽管代码是用标签显示的,标签不是&#34;#34;处理&#34;通过html显示为没有标签和文本/图像/链接...

<p>some text</p>

当我使用开发人员工具栏时:

<article>"<p>some tex</p>"<article>

我的问题是:我怎样才能删除那些&#34;在开始和结束时还是应该以另一种方式进行?

2 个答案:

答案 0 :(得分:1)

您可以尝试:

{{ nptext|raw }}


文档:
http://twig.sensiolabs.org/doc/filters/raw.html

答案 1 :(得分:0)

$nptext = '"<p>some text</p>"'; // output: "<p>some text</p>" 

$nptext = str_replace('"', '', $nptext); // output: <p>some text</p>