我正在尝试使用 cakephp 创建多个文件上传。但是,我遇到了一个问题,我无法启用蛋糕内置上传功能的“多重”功能。
这是我得到的:
<?php
echo $this->Form->create('Cmt', array('type'=>'file','multiple'=>'multiple'));
echo $this->Form->file('File');
echo $this->Form->submit('Upload');
echo $this->Form->end();
?>