Cakephp多文件上传

时间:2013-05-06 06:48:50

标签: php cakephp

我正在尝试使用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(); 
?>

2 个答案:

答案 0 :(得分:1)

我的错误在于这行代码:

echo $this->Form->create('Cmt', array('type'=>'file','multiple'=>'multiple'));

经过研究,我得到了正确的答案并将我的代码修改为:

<?php
    echo $this->Form->create('Cmt');
    echo $this->Form->file('File', array('type'=>'file','multiple'=>'multiple'));
    echo $this->Form->submit('Upload');
    echo $this->Form->end(); 
?>

让它工作:)

答案 1 :(得分:1)

最佳解决方案是

echo $this->Form->file('File. ', array('type'=>'file','multiple'=>'multiple'));