CakePHP:使用文本助手剥离 HTML?
我正在使用文本助手的截断方法,这样做意味着文本中包含的任何 html 都会被渲染。有没有办法设置文本助手来去除 html 标签?
echo $text->truncate(
$project['Project']['description'],
250,
array(
'ending' => '...',
'exact' => false
)
);
是否有类似于 stripLinks 方法的修改?
谢谢,
琼斯
I'm using the truncate method of the text helper and in doing so means any html included in the text is being rendered. Is there anyway to set the text helper to strip out html tags?
echo $text->truncate(
$project['Project']['description'],
250,
array(
'ending' => '...',
'exact' => false
)
);
Is there a modification to this similar to the stripLinks method?
thanks,
Jonesy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将使它尊重 html 结构。你总是可以使用 strip_tags(),在 cake 中使用 php 函数没有任何问题:)
that will make it respect the html structure. you can always use strip_tags(), there is nothing wrong with using php functions in cake :)
是的,您应该使用
Sanitize::html($badString)
请参阅文档。
Yes, you should use
Sanitize::html($badString)
See the documentation.