上传时在CakePHP中的db not array中插入文件名

时间:2012-06-14 07:53:02

标签: php database arrays cakephp cakephp-2.1

我正在使用CakePHP 2.1并尝试将文件上传到服务器。

我可以通过手动命名文件成功地将文件移动到指定的目录,但是它没有从中获取名称 视图中的文件类型:register。

数据库表:用户

Id Auto_Increment
username
file_name

Controller:UsersController.php

public function register(){
    if ($this->request->is('post')){
        //   $this->data['User']['resume_file']['tmp_name'] = 'test.php';
        //  The above statement is working good

        if ($this->User->save($this->request->data)){
            $this->Session->setFlash('Message : ' . $this->data['User']['resume_file']['tmp_name']);
            //debug($this->data['User']['resume_file']['tmp_name']);

            // This is giving an error, while inserting
        }
    }
}

查看:users / register.php

<?php
    echo $this->Form->create('User', array('type'=>'file'));
    echo $this->Form->input('username');
    echo $this->Form->input('file_name', array('type'=>'file', 'label'=>'Upload document') );
    echo $this->Form->end('Register');
?>

错误:数据库错误

INSERT INTO `sample_db`.`users` (`file_name`, `created`) VALUES (Array, '2012-06-14 08:10:10')

我看到的是,当插入到表中时,在CakePHP中插入了Array和错误Array to string conversion错误 现在我如何在CakePHP中获得input type : file_name的值

否则,如果我们可以在使用以下请求语句保存之前修改数据..

$this->request->data

我尝试用下面的语句

来改变它
$this->data['User']['resume_file']['tmp_name'] = 'test.php';

但无法回复相同的错误,任何想法......

1 个答案:

答案 0 :(得分:3)

试试这个:

public function register(){
    if ($this->request->is('post')){
        $filename = $this->request->data['User']['file_name']['tmp_name'];
        $this->data['User']['file_name'] = $filename;

        if ($this->User->save($this->request->data)){
            $this->Session->setFlash('Message : ' . $filename);
        }
    }
}