파일 업로드 작업을 위해 양식 도우미를 사용할 예정입니다. 파일 업로드 예시는 다음과 같습니다.
다음 프로그램과 같이 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 디렉토리를 생성하고 해당 디렉토리 아래에 index.php라는 View 파일을 생성합니다. 해당 파일의 다음 코드를 참조하세요.
<?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 중국어 웹사이트의 기타 관련 기사를 참조하세요!