如何我的上传界面显示文件后缀

来源:1-2 客户端页面配置说明

慕UI4031390

2016-08-16 20:16

<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Strict//EN' 'http://www.w3.org/TR/html4/strict.dtd'>

<html>

<head>

<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>

<title>文件上传</title>

</head>

<body>

<form action="doaction.php" method="post" enctype="multipart/form-data">

请选择您要上传的文件:

<input type="file" name="myfile"/><br>

<input type="submit" value="上传文件"/>

</form>

</body>

</html>


写回答 关注

2回答

  • fengshunsgit
    2016-08-16 22:29:08
    已采纳
    <?PHP
        if(isset($_POST['submit'])) {
            $string = strrev($_FILES['upfile']['name']);
            $array = explode('.',$string);
            echo $array[0];
        }    
    ?>


    慕UI403...

    非常感谢!

    2016-08-17 10:54:20

    共 1 条回复 >

  • qq_再见_33
    2018-01-31 10:41:24

    <?php

    $wjm="C:zhuomian/img/a.png";

    $string=substr($wjm,strrpos($wjm,"."));

    echo $string;

    echo '<hr>';

    //第二个

    function string(){

    $a="C:/meitu/img/p.text";

    $str=substr($a,strrpos($a,"."));

    return $str;

    }

    echo string();


PHP实现文件上传与下载

本课程讲解了文件上传的原理和配置,学会两种方式实现文件上传与下载

43735 学习 · 328 问题

查看课程

相似问题