我正在使用Symfony 1.4并在 action 中有一个字符串,并在变量中设置此字符串:
<div class='paging_links' name='initiatives'>
<span class='active' name='1'>1</span>
<span class='' name='2'>2</span>
</div>
然后在模板中,转换<?php echo html_entity_decode($pagination) ?>
会产生以下内容:
<div class="'paging_links'" name="'initiatives'">
<span class="'active'" name="'1'">1</span>
<span class="''" name="'2'">2</span>
</div>
但是我需要没有双引号的类名。我怎样才能做到这一点?
答案 0 :(得分:0)
我解决了
html_entity_decode($string, ENT_QUOTES | ENT_XML1, 'UTF-8')