为了账号安全,请及时绑定邮箱和手机立即绑定

无法访问 PHP/Twig 中命名数组键的值

无法访问 PHP/Twig 中命名数组键的值

PHP
吃鸡游戏 2021-06-03 14:11:37
我有一个这样的 PHP 数组:索引.php:$state = [  'isLoggedIn' => false,  'isB2BCustomer' => false];print($twig->render('index.html', ['state' => $state]));索引.html:{% for key, stateItem in state %}  <tr>    <td>{{ key }}: {{ stateItem }}</td>  </tr>{% endfor %}这给了我以下输出:|---------------------|| State               ||---------------------|| isLoggedIn:         ||---------------------|| isB2BCustomer:      ||---------------------|我期待着:|---------------------|| State               ||---------------------|| isLoggedIn: 0       ||---------------------|| isB2BCustomer: 0    ||---------------------|它正确显示了键,但我似乎无法弄清楚如何获取该值。
查看完整描述

1 回答

?
月关宝盒

TA贡献1772条经验 获得超5个赞

{% for key, stateItem in state %}

  <tr>

    <td>{{ key }}: {{ stateItem ? '1' : '0' }}</td>

  </tr>

{% endfor %}

在这里找到:https : //twig.symfony.com/doc/2.x/templates.html#other-operators


查看完整回答
反对 回复 2021-06-04
  • 1 回答
  • 0 关注
  • 117 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信