What is the difference between {{ }} and {!! !!} in laravel blade files?({{ }} 和 {!! 有什么区别?!!} 在 laravel 刀片文件中?)
问题描述
在laravel框架中我们可以使用blade在html文件中添加PHP代码.
我们同时使用 {{ }}
和 {!!!!}
Laravel 刀片文件中的语法.
它们有什么区别?
In the laravel framework we can use blade to add PHP code in html file.
We are using both {{ }}
and {!! !!}
syntax in blade files of Laravel.
What is the difference between them?
推荐答案
Blade {{ }} 语句通过 PHP 的 htmlentities 函数自动发送,以防止 XSS 攻击.
如果您将数据从控制器传递到具有一些 HTML 样式的视图,例如:
If you pass data from your Controller to a View with some HTML styling like:
$first = "<b>Narendra Sisodia</b>";
在 Blade 中使用 {{ $first }}
访问它,然后输出将是:
And it is accessed, within Blade, with {{ $first }}
then the output'll be:
<b>Narendra Sisodia</b>
但是如果用{!!$first !!}
然后输出将是:
But if it is accessed with {!! $first !!}
then the output'll be:
纳伦德拉·西索迪亚
这篇关于{{ }} 和 {!! 有什么区别?!!} 在 laravel 刀片文件中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:{{ }} 和 {!! 有什么区别?!!} 在 laravel 刀片文件中
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01