我正在处理现有项目。有很多这样的形式:
<?php echo $form->create('MyForm', array('id' => 'MyFormId')); ?>
<?php echo $form->input('User.0.username', array( 'label' => false, )); ?>
<?php echo $form->input('User.0.location', array( 'label' => false, )); ?>
<?php echo $form->end(); ?>
它正在生成这样的表单元素:
<input type="text" id="User0Username" name="data[User][0][username]">
<input type="text" id="User0Location" name="data[User][0][location]">
但我希望它们看起来像这样:
<input type="text" id="User0Username" name="User_0_username">
<input type="text" id="User0Location" name="User_0_location">
是否有任何$form->create();
功能选项来获取此 html 而不是更改我的表单元素?
谢谢