zhiqingstudy

Be a young person with knowledge and content

Superglobal variable$_ FILES is a two-dimensional array used to save file information uploaded from the client to the server. The row of the two-dimensional array is the name of the file field, and there are five columns
1、$_ FILES [] ['name ']: Uploaded file name
2、$_ FILES [] ['type ']: uploaded file type
3、$_ FILES [] ['size ']: size of the file, in bytes
4、$_ FILES [] ['tmp_name ']: temporary file during file upload
5、$_ FILES [] ['error ']: error code (values are 0, 1, 2, 3, 4, 6, 7) 0 means correct

Html file code:
<form method="post" action="info.php" enctype="multipart/form-data">
    <input type="file" name="f">
    <input type="submit" name="button" value="提交">
</form>


PHP file code (info. php):
<?php
if(!empty($_POST)){
    if($_FILES['f']['error']==0){
        // 文件上传  move_uploaded_file保存上传的文件,并重命名防止文件名冲突
        $path='./'.substr($_FILES['f']['name'],0,strpos($_FILES['f']['name'],'.')).uniqid('').strrchr($_FILES['f']['name'],'.');
        move_uploaded_file($_FILES['f']['tmp_name'],$path);
    }else{
        echo '上传有误';
        echo '错误码:'.$_FILES['f']['error'];
    }
}
?>

comment
head sculpture
Code:
Related

The art of interpersonal communication and communication

A code of conduct that regulates and regulates interpersonal relationships

The importance of interpersonal relationships




Unless otherwise specified, all content on this website is original. If the reprinted content infringes on your rights, please contact the administrator to delete it
Contact Email:2380712278@qq.com

Filing number:皖ICP备19012824号