我将 cakephp 用于我的 Web 应用程序。我有一个数据库表,其中存储了一些以纯文本格式保存的著作。我该怎么做才能获得它自己格式化为 html 标记的文本?
例如,我在数据库上有一个文本,例如:
blablablabalbalblablablablablablablablabalbalbla.
otherotherotherotherotherother.
helloworldhelloworldhelloworldhelloworld.
但是当我得到它时,它显示如下:
blablablabalbalblablablablablablablablabalbalbla.otherotherotherotherotherother.helloworldhelloworldhelloworldhelloworld.
但我希望它像这样进入 html:
<p>blablablabalbalblablablablablablablablabalbalbla.</p>
<p>otherotherotherotherotherother.</p>
<p>helloworldhelloworldhelloworldhelloworld.</p>
有什么办法吗?