tp框架檔案上傳

2022-08-23 12:42:09 字數 1401 閱讀 9385

tp框架的檔案上傳功能也非常簡便,我們一起來看一下:

1、首先我們要在controller資料夾下新建乙個控制器testcontroller.class.php:

<?php 

namespace home\controller;

usethink\controller;

class testcontroller extends

controller

public

function

wjsc()

else}}

2、在view資料夾下新建乙個test資料夾,再在裡邊新建乙個shangchuan.html頁面:

>無標題文件

title

>

head

>

<

body

>

<

h1>檔案上傳

h1>

<

form

action

="__controller__/wjsc"

method

="post"

enctype

="multipart/form-data"

>

<

input

type

="file"

name

="file"

/>

<

input

type

="submit"

value

="上傳"

/>

form

>

body

>

html

>

效果圖:

tp框架 檔案上傳

之前也做過檔案上傳,現在學了tp,用tp怎麼做呢?第一步 做乙個wenjian控制器 namespace ceshi controller use think controller class wenjiancontroller extends controller public function ...

框架 檔案上傳類

created by jetbrains phpstorm.user stu date 14 3 4 time 下午4 56 to change this template use file settings file templates.final class upload return iamg...

上傳檔案 Spring框架

上傳檔案 spring框架 1 建立web頁面 檔案上傳的html頁面中需要表單,且method post和enctype multipart form data 使用的控制項是 method post action upload.do enctype multipart form data nam...