douli4337 2018-01-25 17:12
浏览 79
已采纳

PHP / Laravel回显HTML

So i have the following value:

$content = "<ol><li>AbC</li></ol><p>sd</p>"

Now I wish to display this on my page.blade.php

But I am not quite sure how to do it. I have attempted with:

{{$content}}

But as expected it just prints the HTML and does not actually inject it.

So my question is how do I inject the HTML?

  • 写回答

3条回答 默认 最新

  • dongzhi9906 2018-01-25 17:14
    关注

    Try the following-

    {!!$content!!}
    

    {{ }} will result in auto escape of string.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?