0
我在我的數據庫上有一個字段類型string
,名爲image_cover
。 我有一個字段類型file
我的形式:如何從輸入文件保存圖像的名稱
<?php
echo $this->Form->create($event, ['type' => 'file'])
echo $this->Form->file('image_cover')
echo $this->Form->submit('Send')
echo $this->Form->end()
?>
在控制器$this->request->data('image_cover')
是具有文件名,大小等
我需要image_cover
變化的值,以該文件的唯一的名稱的數組。
我試圖做到這一點上beforeSave
但不工作