警告:字符串偏移量'tag'不合法

时间:2019-03-06 17:50:25

标签: tags warnings

我在下一行收到此警告,有帮助吗?

<label class="inputLabel"<?php echo ($field['tag']) ? ' for="'.$field['field']['tag'].'"': ''; ?>><?php echo $field['title']; ?></label>      **strong text**

下面是代码部分。

<div class="discountForm<?php echo $selectionStyle; ?> discount<?php echo $box; ?>">
<fieldset class="discount">
  <legend><?php echo $selection[$i]['module']; ?></legend>
  <?php echo $selection[$i]['redeem_instructions']; ?>
  <div class="gvBal larger"><?php echo $selection[$i]['checkbox']; ?></div>
  <div class="gvBal">
  <?php foreach ($selection[$i]['fields'] as $field) { ?>
    <label class="inputLabel"<?php echo ($field['tag']) ? ' for="'.$field['field']['tag'].'"': ''; ?>><?php echo $field['title']; ?></label>      
    <?php echo $field['field']; ?> 
  <?php } ?>
  <?php   if ( ($selection[$i]['module'] != MODULE_ORDER_TOTAL_INSURANCE_TITLE) && ($selection[$i]['module'] != MODULE_ORDER_TOTAL_SC_TITLE) ) { ?>
    <div class="buttonRow"><?php echo zen_image(zen_output_string($template->get_template_dir(BUTTON_IMAGE_UPDATE, DIR_WS_TEMPLATE, $current_page_base, 'buttons/' . $_SESSION['language'] . '/') . BUTTON_IMAGE_UPDATE), BUTTON_UPDATE_ALT, '', '', 'onclick="updateForm();"'); ?></div>
  <?php   } ?>
  </div> 
</fieldset>

1 个答案:

答案 0 :(得分:0)

您正在尝试使用string索引来访问string

您将$field当作数组,而实际上却是string。检查您的代码以及$selection[$i]['fields']的输出是什么。