我正在尝试在Twig中分配多个php变量。例如下面的我的php代码。
<input type="text" name="customweight_<?php echo $geo_zone['geo_zone_id']; ?>_weight" value="<?php echo ${'customweight_' . $geo_zone['geo_zone_id'] . '_weight'}; ?>" id="input-customweight_weight" class="form-control" />
$geo_zone['geo_zone_id']
是一个动态变量。对于前。值是5
$customweight_5_weight
是另一个动态变量
我尝试过但是没用
{{attribute( context,'customweight '〜geo_zone.geo_zone_id〜'_weight')}}
$customweight_5_weight
是一个字符串变量,而不是反对者数组。
我想变成树枝