我正在尝试在我的 CakePHP 应用程序中加入上传功能。我之前为一个原始的 PHP 项目构建了一个,并决定重用该代码,因为我知道它可以工作。代码如下:
$allowed_filetypes = array('.jpg','.gif','.bmp','.png');
$max_filesize = 1000000; // Maximum filesize in BYTES
$upload_path = './files/';
$filename = $_FILES['userfile']['name'];
$desiredname = $_POST['desiredname'];
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1);
$savedfile = $desiredname.$ext;
// Check if the filetype is allowed, if not DIE and inform the user.
if(!in_array($ext,$allowed_filetypes))
die('The file you attempted to upload is not allowed.');
// Now check the filesize, if it is too large then DIE and inform the user.
if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)
die('The file you attempted to upload is too large.');
// Check if we can upload to the specified path, if not DIE and inform the user.
if(!is_writable($upload_path))
die('You cannot upload to the specified directory, please CHMOD it to 777.');
// Upload the file to your specified path.
if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $savedfile))
echo 'Your file upload was successful, view the file <a href="' . $upload_path . $savedfile . '" title="Your File">here</a>'; // It worked.
else
echo 'There was an error during the file upload. Please try again.'; // It failed :(.
我已将此代码放入要上传的页面的控制器中。我在 CakePHP 中使用了 FormHelper 来生成表单,如下:
<?php
echo $this->Form->create('Customer', array(
'class' => 'form-horizontal',
'action' => 'add',
'enctype' => 'multipart/form-data'
));
echo $this->Form->input('filename', array(
'type' => 'text',
'label' => 'Filename',
'class' => 'span5'
));
echo $this->Form->input('file', array(
'between' => '<br />',
'type' => 'file'
));
echo $this->Form->end('Save Changes', array(
'label' => false,
'type' => 'submit',
'class' => 'btn btn-primary'
));
echo $this->Form->end();
?>
我已更改对旧代码中字段的任何引用,以反映此项目中使用的表单更改。但是,我在提交表单时收到以下错误:
注意(8):未定义索引:CustomerFile [APP\Controller\CustomersController.php,第 148 行]
注意(8):未定义索引:CustomerFilename [APP\Controller\CustomersController.php,第 149 行]
在控制器的代码中,我(再次)更改了表单字段以使用以下内容:
$filename = $this->request->data['CustomerFile']['name'];
$desiredname = $this->request->data['CustomerFilename'];
但错误仍然发生。我猜测表单字段没有被正确引用,但我认为我已经使用$this->request
代码正确引用了它们,但显然它没有工作。有人有什么想法吗?