如何在按钮之间添加新行? PHP

时间:2015-08-05 05:45:06

标签: php newline

$form->addElement( new Element\Button (" Edit " , "button " ));

$form->addElement(new Element\Button);

$form->addElement(new Element\Button ( "Cancel " , "button"));

我使用了\nPHP_EOL,但没有任何效果。新行应该在EDIT按钮和新元素之间。 我应该使用HTML吗?

2 个答案:

答案 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"));