php – Laravel foreach变量循环范围

前端之家收集整理的这篇文章主要介绍了php – Laravel foreach变量循环范围前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我使用Laravel刀片文件foreach循环时,变量可以在foreach循环之后访问,而变量的范围应该只在循环内
@foreach($user->referral as $ref)
  <tr>
    <td>{{ $ref->referral_amount }}</td>
    <td>{{ $ref->status }}</td>
  </tr>
@endforeach

$ref:这个变量可以在@endforeach之后的endforeach循环之外访问

the foreach docs开始:

Warning

Reference of a $value and the last array element remain even after the foreach loop. It is recommended to destroy it by unset()

因此,如果要销毁引用,请执行以下操作:

<?PHP unset($ref); ?>

要么:

@PHP unset($ref); @endPHP
原文链接:https://www.f2er.com/laravel/134328.html

猜你在找的Laravel相关文章