3

我正在开发一个 CakePHP 项目。在这里,我必须上传一个文件,然后将该文件移动到特定文件夹。上传工作正常,但我无法将其移动到我想要的文件夹。CakePHP 中是否有任何功能或东西可以移动上传的文件?

目前我正在使用 PHP 的核心功能move_uploaded_file()。此功能需要源和目标的绝对路径,而不是http://localhost/....,我试过了,但没有用。那么,你知道我如何获得Base Directory/Absolute Path我的申请吗?这就像:C://wamp/www/project_folder/......

4

3 回答 3

3

在控制器中添加功能

public function add() {
    $this->Model->create();
    if ($this->request->is('post')) {
        if(!empty($this->data['Model']['image']['name']))
        {
        $file=$this->data['Model']['image'];
        $ary_ext=array('jpg','jpeg','gif','png');
        $ext = substr(strtolower(strrchr($file['name'], '.')), 1); //get the extension
            if(in_array($ext, $ary_ext))
            {
                move_uploaded_file($file['tmp_name'], WWW_ROOT . 'img/uploads/posts/' . $file['name']);
                $this->request->data['Model']['image'] = $file['name'];
            }   
        }
        if ($this->Model->save($this->request->data)) 
        {
            $this->Session->setFlash('Your record has been saved.');
            $this->redirect(array('action' => 'index'));
        }
        else 
        {
            $this->Session->setFlash('Unable to add your record.');
        }
    }
}


File control in add.ctp file

echo $this->Form->input('image',array('type'=>'file'));


you can define constant in index.php file like below
/**
 *  Get Cake's root directory
 */
define('APP_DIR', 'app');
define('DS', DIRECTORY_SEPARATOR);
define('ROOT', dirname(__FILE__));
define('WEBROOT_DIR', 'webroot');
define('WWW_ROOT', ROOT . DS . APP_DIR . DS . WEBROOT_DIR . DS);
于 2013-08-06T09:55:25.400 回答
2

Cake 生成(或交给你...)的常量记录在Global Constants and Functions中。

使用 Cake 的 globalAPP似乎是可行的方法(除非您不想移动文件APP/夹中的文件)。

于 2013-08-05T17:10:31.987 回答
1

您可以使用 php 函数getcwd()来获取应用程序的基本目录。

于 2013-08-05T17:41:22.523 回答