精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

CakePHP 文件上傳

cakephp 文件上傳

 

為了處理文件上傳,我們將使用表單助手。這是一個文件上傳示例。

 

示例

在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)建一個 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)建一個目錄 files,然后在該目錄下創(chuàng)建一個名為 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/文件夾中的文件。通過訪問以下 url 執(zhí)行上述示例:

http://localhost/cakephp4/fileupload:

 

輸出

當(dāng)你執(zhí)行上面的代碼時,你應(yīng)該看到下面的輸出:

相關(guān)文章