使用Twig的UTF8字符编码-Symfony2

时间:2018-12-12 19:57:39

标签: utf-8 twig

我从数据库中获取数据,并将其保存在这样的表中:

<p>Com o objetivo de conscientizar a popula&ccedil;&atilde;o

我使用过滤器 striptags 删除了HTML标签,但无法将文本更改为UTF-8!

我所有的文件都是UTF-8,并且都具有

<meta charset="UTF-8" />

我尝试了

{{my_text|convert_encoding('UTF-8', 'ISO-8859-1')}}

{{my_text|raw|convert_encoding('UTF-8', 'ISO-8859-1')}}

我的代码是:

{% for noticia in noticias%}
    <a href="noticias/{{noticia.id}}">
      <div class="noticia">
          <img src='assets/temp/op1.jpg'>
        <h4 class="title">{{noticia.titulo|striptags}}</h4>
        <p class="text">{{noticia.texto|striptags|slice(0,180)|join(' ') ~ '…'}}</p>
      </div>
    </a>
    {% endfor %}

有人可以帮助我吗?我应该问数据库专家在数据库中修复它吗?

0 个答案:

没有答案