PHP - 使用pear的HTTP_Upload包进行上传

前台代码:

复制代码
<html>
<head>
    <title>上传文件</title>
</head>
<body>
    <form enctype="multipart/form-data" action="upload.php" method="post">
        <input type="file" name="uploadfile" />
        <input type="submit" value="上传"/>
    </form>
</body>
</html>
复制代码

 

后台代码:

复制代码
<?php 
    
    //上传单文件
    require 'HTTP/Upload.php';
   
    $upload = new HTTP_Upload();
    
    $file = $upload->getFiles('uploadfile');
    
    if ($file->isValid()) {
        $file->moveTo('uploads/');
        echo 'OK!';
    }else {
        echo 'False!';
    }
    
?>
复制代码

 


最终:

posted on   ultrastrong  阅读(340)  评论(0编辑  收藏  举报

努力加载评论中...
< 2025年1月 >
29 30 31 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 31 1
2 3 4 5 6 7 8

统计

点击右上角即可分享
微信分享提示