본문 바로가기

PROGRAMMING/PHP

php사진업로드

$target_dir = "uploads_dir/";

$target_file = $target_dir . basename($_FILES["m_companyLogo"]["name"]);

$uploadOk = 1;

$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);

// Check if image file is a actual image or fake image

if(isset($_POST["submit"])) {

    $check = getimagesize($_FILES["m_companyLogo"]["tmp_name"]);

    if($check !== false) {

        echo "File is an image - " . $check["mime"] . ".";

        $uploadOk = 1;

    } else {

        echo "File is not an image.";

        $uploadOk = 0;

    }

}

// Check if file already exists

if (file_exists($target_file)) {

    echo "Sorry, file already exists.";

    $uploadOk = 0;

}

// Check file size

if ($_FILES["m_companyLogo"]["size"] > 500000) {

    echo "Sorry, your file is too large.";

    $uploadOk = 0;

}

// Allow certain file formats

if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"

&& $imageFileType != "gif" ) {

    echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";

    $uploadOk = 0;

}

// Check if $uploadOk is set to 0 by an error

if ($uploadOk == 0) {

    echo "Sorry, your file was not uploaded.";

// if everything is ok, try to upload file

} else {

    if (move_uploaded_file($_FILES["m_companyLogo"]["tmp_name"], $target_file)) {

        echo "The file ". basename( $_FILES["m_companyLogo"]["name"]). " has been uploaded.";

    } else {

        echo "Sorry, there was an error uploading your file.";

    }

}

'PROGRAMMING > PHP' 카테고리의 다른 글

값이 넘어가는지 확인할때  (0) 2015.12.29
php 나이 구하기  (0) 2015.12.15
파일질라 서버 에러시  (0) 2015.11.28
alert에 변수값 표시  (0) 2015.11.24
form 대신 input으로 가능  (0) 2015.11.19