CakePHP上传 - 上传后更改文件名

时间:2015-08-10 11:34:35

标签: php cakephp file-upload

我使用Jose Diaz-Gonzalez's Upload Plugin上传文件并调整大小。

public $actsAs = array(
      'Containable',
    'Upload.Upload' => array(
        'filename' => array(
            'fields' => array(
                'dir' => 'gallery'
            ),
                        'thumbnailSizes' => array(
                                'small' => '500x500',
                        ),
                        'thumbnailMethod' => 'php',
                        'path' => '{ROOT}webroot{DS}img{DS}{model}{DS}',
                        'nameCallback' => 'filerename'
        )
    )
  );

function filerename($currentName) {
        debug($data);
        debug($currentName);
        return uniqid();
    }

除了原始文件中似乎缺少文件extension之外,它工作正常。我不知道如何访问文件的扩展名,以便我可以将其附加到rename函数

4 个答案:

答案 0 :(得分:2)

我得到了解决方案。

在你的模特中:

'nameCallback'=> 'filerename'<<< ---这没关系!

public function filerename()
{
    return date("Y_m_d H_i");
}

在数据库中获取正确的名称。这对我有用。

public function beforeSave($options = array()) 
{
    // Cambiar el nombre a la foto de perfil
    if( isset($this->data['User']['photo']) )
    {
        $exp = array();
        $exp = explode("/", $this->data['User']['type']);
        $this->data['User']['photo'] = date("Y_m_d H_i") .".". $exp[1];
    }

    return true;
}

答案 1 :(得分:1)

我是这样做的,与Danilo Miguel略有不同。

在$ actsAs字段的名称数组中,我把它放在:

'nameCallback'=>'renameFile',

在我的职能中:

public function renameFile($currentName,$data,$field){
    //current name = name of file
     $name = explode('.',$data); //name to array --convierte el nombre a array
     $index=sizeof($name)-1;//get the index of the extension -- obtiene la posicion de la extencion
     $extencion=$name[$index]; //extension -- obtiene la extencion
     $sluged=Inflector::slug($field['Anuncio']['titulo'],$replacement='-'); //uses the method slug to get new name using another field of the request data -- uso el nombre de otro campo de los datos al hacer el post
     $created=date("Y-m-d-h-i-sa");
     //return the new name -- retorna el nuevo nombre :V
     return $sluged.'-'.$created.'.'.$extencion;
}

它有效。

答案 2 :(得分:0)

我这样做了,并且有效:

public function filerename($currentName,$data,$field) {
    $part = explode('/',$field['User']['type']);
    return md5(uniqid(rand(),true)).'.'.$part[1];
}  

答案 3 :(得分:0)

试试这个:

function renameFile($currentName,$data,$field) {
$array = explode(".",$data);
$newName = md5(time().rand(1111,99999999)).".".end($array);
 return $newName;
}