我正在使用 Cake PHP 创建一个表单。有没有办法检索创建的表单的基本 HTML。例如,如果我们使用 Form Helper,我们可以使用 PHP 本身创建表单。但是现在,我只需要创建的表单的 html 部分用于其他用途。能找回来吗??
例如,假设我给出这样的输入形式,
<?php
echo $this->Form->create('User');
echo $this->Form->input('email');
echo $this->Form->end('Save');
?>
我需要这样的输出
<form action="index.html">
<input type="email" />
<input type="submit" value="Save" />
</form>
我什至可以创建单独的函数来实现这个目标。但我想知道,是否有任何其他方法可以实现此输出