php 文件上傳
效果圖:
實現代碼:
application\index\controller\index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?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()); } } } |
application\index\view\index\index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!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> |
以上就是php上傳文件的實例,如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
原文鏈接:http://onestopweb.iteye.com/blog/2386348