@foreach($user->referral as $ref) <tr> <td>{{ $ref->referral_amount }}</td> <td>{{ $ref->status }}</td> </tr>@endforeach
$ref:这个变量可以在@endforeach之后的endforeach循环之外访问
从 theforeach
docs开始: Warning
Reference of a
$value
and the last array element remain even after theforeach
loop. It is recommended to destroy it byunset()
因此,如果要销毁引用,请执行以下 *** 作:
<?PHP unset($ref); ?>
要么:
@PHP unset($ref); @endPHP总结
以上是内存溢出为你收集整理的php – Laravel foreach变量循环范围全部内容,希望文章能够帮你解决php – Laravel foreach变量循环范围所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)