CakePHP:使用文本助手剥离 HTML?

发布于 2024-09-26 19:26:23 字数 426 浏览 5 评论 0原文

我正在使用文本助手的截断方法,这样做意味着文本中包含的任何 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

允世 2024-10-03 19:26:23
echo $text->truncate(    
            $project['Project']['description'], 
            250,   
            array(
                'ending' => '...', 
                'exact' => false,
                'html' => true
            )
        );

这将使它尊重 html 结构。你总是可以使用 strip_tags(),在 cake 中使用 php 函数没有任何问题:)

echo $text->truncate(    
            $project['Project']['description'], 
            250,   
            array(
                'ending' => '...', 
                'exact' => false,
                'html' => true
            )
        );

that will make it respect the html structure. you can always use strip_tags(), there is nothing wrong with using php functions in cake :)

撞了怀 2024-10-03 19:26:23

是的,您应该使用 Sanitize::html($badString)
请参阅文档

Yes, you should use Sanitize::html($badString)
See the documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文