< body> 파일 확장자 확인 &l"/> 파일 확인 < body> 파일 확장자 확인 &l">

 >  기사  >  백엔드 개발  >  PHP를 사용하여 파일 확장자를 결정하는 방법

PHP를 사용하여 파일 확장자를 결정하는 방법

一个新手
一个新手원래의
2017-09-12 10:14:151859검색


<!DOCTYPE>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html" charset="utf-8">
    <title>check file</title>
</head>
<body>
<b>文件扩展名验证</b>
<input type="text" name="int" value="文件.php" onblur="check(this)" id="int">
<input type="button" value="检测" onclick="check_value()">
<script>    function check(obj){        
    if(obj.value == "" || obj.value.length<3){
            alert("输入的长度不能小于3且不能为空!");
            obj.focus();
        }
    }    function check_value(){        var str = $("int").value;        var repx = /\.(php|asp|jsp)$/i;        var type = str.substring(str.lastIndexOf("."),str.length);        if(type.match(repx) && str.lastIndexOf(".") != -1){
            alert("文件扩展名正确");
            $("int").focus();
        }else{
            alert("文件扩展名有误");
            $("int").focus();
        }
    }    function $(obj){        return document.getElementById(obj);
    }</script>
</body>
</html>

위 내용은 PHP를 사용하여 파일 확장자를 결정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.