為了進行檔案上傳,我們將使用表單助理。這是文件上傳的範例。
在 config/routes.php 檔案中進行更改,如下列程式所示。
<?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 建立 FilesController.php 檔案。 將以下程式碼複製到控制器檔案中。如果已經創建,請忽略。
在 src/ 建立 uploads/ 目錄。上傳的檔案將保存在 uploads/ 資料夾中。
<?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 處建立一個目錄 Files 並在該目錄下建立一個 View 文件,名稱為 index.php。 複製以下程式碼位於該檔案中。
<?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:<br/>"; for($i = 2; $i < count($files); $i++) echo "File is - ".$files[$i]."<br>"; ?>
為使用者列出儲存在 uploads/ 資料夾中的檔案。透過造訪以下 URL 來執行上述範例 -
http://localhost/cakephp4/fileupload -
當您執行上述程式碼時,您應該看到以下輸出 -
以上是CakePHP 檔案上傳的詳細內容。更多資訊請關注PHP中文網其他相關文章!