CakePHP 文件上傳
cakephp 文件上傳
為了處理文件上傳,我們將使用表單助手。這是一個(gè)文件上傳示例。
示例
在config/routes.php文件中進(jìn)行修改,如下程序所示。
config/routes.php
use cake\http\middleware\csrfprotectionmiddleware; use cake\routing\route\dashedroute; use cake\routing\routebuilder; $routes--->setrouteclass(dashedroute::class); $routes->scope('/', function (routebuilder $builder) { $builder->registermiddleware('csrf', new csrfprotectionmiddleware([ 'httponly' => true, ])); $builder->applymiddleware('csrf'); //$builder->connect('/pages',['controller'=>'pages','action'=>'display', 'home']); $builder->connect('fileupload',['controller'=>'files','action'=>'index']); $builder->fallbacks(); });
在 src/controller/filescontroller.php 中創(chuàng)建一個(gè) filescontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。忽略(如果已創(chuàng)建)。
在 src/中創(chuàng)建 uploads/目錄。上傳的文件將保存在uploads/文件夾中。
src/controller/filescontroller.php
namespace app\controller; use app\controller\appcontroller; use cake\view\helper\formhelper; class filescontroller extends appcontroller { public function index(){ if ($this--->request->is('post')) { $fileobject = $this->request->getdata('submittedfile'); $uploadpath = '../uploads/'; $destination = $uploadpath.$fileobject->getclientfilename(); // existing files with the same name will be replaced. $fileobject->moveto($destination); } } } ?>
在 src/template 中創(chuàng)建一個(gè)目錄 files,然后在該目錄下創(chuàng)建一個(gè)名為 index.php 的 view 文件。 b> 在該文件中復(fù)制以下代碼。
src/template/files/index.php
echo $this--->form->create(null, ['type' => 'file']); echo $this->l;form->file('submittedfile'); echo $this->form->button('submit'); echo $this->form->end(); $uploadpath ='../uploads/'; $files = scandir($uploadpath, 0); echo "files uploaded in uploads/ are: "; for($i = 2; $i < count($files); $i++) echo "file is-".$files[$i]." "; ?>
為用戶列出了保存在uploads/文件夾中的文件。通過(guò)訪問(wèn)以下 url 執(zhí)行上述示例:
http://localhost/cakephp4/fileupload:
輸出
當(dāng)你執(zhí)行上面的代碼時(shí),你應(yīng)該看到下面的輸出:

相關(guān)文章
- CodeIgniter 安裝
- CodeIgniter 配置
- CodeIgniter 表單驗(yàn)證
- CodeIgniter 應(yīng)用程序分析
- CakePHP 安裝
- CakePHP 視圖
- CakePHP 國(guó)際化
- CakePHP 安全
- CakePHP 驗(yàn)證
- FuelPHP 安裝
- FuelPHP 應(yīng)用程序
- FuelPHP 視圖
- FuelPHP 電子郵件管理
- Laravel Cookie
- Laravel 響應(yīng)
- Laravel Blade 模板
- Laravel 發(fā)送電子郵件
- Laravel Facades
- Laravel CSRF保護(hù)
- Laravel 哈希