gpt4 book ai didi

php - 什么是正确的 laravel 语法

转载 作者:行者123 更新时间:2023-12-01 15:00:00 24 4
gpt4 key购买 nike

在 laravel Blade 中使用表单时,此语法有效

{!!Form::token()!!} //with double exclamation mark

用于包含远程 js 文件,这是可行的
<script src="{{ asset('js/register.js')}}" ></script>

没有感叹号。事实上,感叹号创建的问题.js 文件未找到错误。

我想知道这两种语法的区别。何时使用哪一种?

最佳答案

来自 Laravel 的文档:

By default, Blade {{ }} statements are automatically sent through PHP's htmlentities function to prevent XSS attacks. If you do not want your data to be escaped, you may use the following syntax:

Hello, {!! $name !!}.

Note: Be very careful when echoing content that is supplied by users of your application. Always use the double curly brace syntax to escape any HTML entities in the content.


使用 {{ $var }}相当于 <?php echo htmlentities($var);?>
使用 {!! $var !!}}相当于 <?php echo $var;?>
一般来说,你会使用 {{ }}大多数情况下,除非有特殊字符自 htmlentities 以来未显示正在逃离他们。只有在这些情况下,您才会使用 {!! !!}} .

希望这可以帮助。

关于php - 什么是正确的 laravel 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36240336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com