$form->addElement( new Element\Button (" Edit " , "button " ));
$form->addElement(new Element\Button);
$form->addElement(new Element\Button ( "Cancel " , "button"));
我使用了\n
和PHP_EOL
,但没有任何效果。新行应该在EDIT按钮和新元素之间。
我应该使用HTML吗?
答案 0 :(得分:0)
将此语句用于新行:
echo '<br/>';
答案 1 :(得分:0)
使用&lt; BR&GT;在php风格的按钮之间
$form->addElement( new Element\Button (" Edit " , "button " ));
echo "<br>";
$form->addElement(new Element\Button);
echo "<br>";
$form->addElement(new Element\Button ( "Cancel " , "button"));