我可以添加一个';span';在CakePHP 3中使用FormHelper标记后?

我可以添加一个';span';在CakePHP 3中使用FormHelper标记后?,cakephp,form-helpers,cakephp3,Cakephp,Form Helpers,Cakephp3,我的代码是: echo $this->Form->control('select', [ 'label' => 'sample label text', 'type' => 'select', 'multiple' => true, 'value' => [1,2], 'options' => ['a','b'] ]); 现在输出为: <label class="

我的代码是:

    echo $this->Form->control('select', [
     'label' => 'sample label text',
     'type' => 'select',
     'multiple' => true,
     'value' => [1,2],
     'options' => ['a','b']
    ]);
现在输出为:

    <label class="control-label" for="select">sample label text</label>
    <input type="hidden" name="select" value="">
    <select name="select[]" multiple="multiple" id="select" class="form-control">
    <option value="0">a</option>
    <option value="1">b</option>
    </select>
示例标签文本
A.
B

我应该如何更改代码以在标签和选择之间添加跨度?

您需要。了解!学习!学习!请参阅:了解您要查找的内容。在问下一个问题之前,你应该仔细检查一下。