문제

I am using Smarty Template Engine and I need imperavi to not strip anything thats inside curly braces. So the code below would show:

<strong>{$entity->fullname|capitalize}</strong>

like

{$entity->fullname|capitalize}

in bold text but wouldn't convert it into

{$entity-&gt;fullname|capitalize}
도움이 되었습니까?

해결책

Check the split_tag in php, it removes HTML tags for text (you can specify which tags to remove): http://ca3.php.net/strip_tags

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top