Heim >Backend-Entwicklung >PHP-Tutorial >So laden Sie Dateien in TP5 in PHP hoch
In diesem Artikel werden hauptsächlich relevante Informationen zu den detaillierten Beispielen zum Hochladen von Dateien in TP5 in PHP vorgestellt. Hier finden Sie Beispiele für das Hochladen von Dateien in PHP. Freunde in Not können sich auf
PHP-Datei-Upload
Rendering: Implementierungscode: applicationindexcontrollerIndex.php<?php namespace app\index\controller; use think\Controller; use think\Request; class Index extends Controller { //文件上传表单 public function index() { return $this->fetch(); } //文件上传提交 public function upload() { //获取表单上传文件 $file = request()->file('files'); if (emptyempty($file)) { $this->error('请选择上传文件'); } //移动到框架应用根目录/public/uploads/ 目录下 $info = $file->move(ROOT_PATH . 'public' . DS . 'uploads'); if ($info) { $this->success('文件上传成功'); echo $info->getFilename(); } else { //上传失败获取错误信息 $this->error($file->getError()); } } }applicationindexviewindexindex.html
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>文件上传</title> </head> <body> <h2>文件上传</h2> <FORM method="post" enctype="multipart/form-data" class="form" action="{:url('upload')}">选择文件: <INPUT type="file" class="files" name="files"><br/> <INPUT type="submit" class="btn" value=" 提交 "> </FORM> </body> </html>Verwandte Empfehlungen:
php readfile() Ändern Datei-UploadGröße Fall
PHP+Ajax ohne AktualisierungDatei-UploadDetaillierte Implementierungsschritte
PHP implementiert WebseiteDatei-UploadDetaillierte Funktionserklärung
Das obige ist der detaillierte Inhalt vonSo laden Sie Dateien in TP5 in PHP hoch. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!