如何覆盖表单助手生成的默认标签?

时间:2017-09-19 09:18:01

标签: cakephp cakephp-2.x

如何覆盖cakephp的默认标签,将其替换为我想要的标签。 cakePHP中的 VIEW 代码是这样的:

echo $this->Form->create('Add');
echo "<h2>Email</h2>"; //Email
echo $this->Form->input('email'); //email
echo $this->Form->submit('submit');
echo $this->Form->end();

1 个答案:

答案 0 :(得分:2)

echo $this->Form->input('email', array('label' => 'Your Label'));