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 刀片文件中
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01