只有Docx文件无法上传PHP 5.4.19

时间:2016-07-27 11:22:29

标签: php

我正在使用godady服务器PHP版本5.4.19,当我上传doc或PDF文件时它正确上传但是当Docx文件上传时有一些错误.... www.jobishh.com页面无效 www.jobishh.com没有发送任何数据。

  

ERR_EMPTY_RESPONSE

代码是..

<?php
if (isset($_POST['submit'])) {
    $target = "upload/";
    $res_msg = "";
    if ((!empty($_FILES['resume'])) && ($_FILES['resume']['error'] == 0)) {
        $file = $_FILES['resume']['name'];
        $filename = basename($_FILES['resume']['name']);
        $ext = substr($filename, strrpos($filename, '.') + 1);
        if (($ext == "docx" || $ext == "doc") && ($_FILES['resume']['size'] < 71680000)) {
            if ((move_uploaded_file($_FILES['resume']['tmp_name'], $target . $file))) {
                $res_msg = " and also uploaded your resume.";
            }
        } else {
            $res_msg = "use only doc and docx file.";
        }

    }
}
?>

<html>
<body>
<form action="" method="POST" enctype="multipart/form-data">
<input type="file" name="resume">
<input type="submit" name="submit">
</form>
</body>
</html>

0 个答案:

没有答案