首页 > 编程 > PHP > 正文

php使用post方式获得文件扩展名

2019-11-14 14:47:24
字体:
来源:转载
供稿:网友
<form action="" method="post">    <input type="file" value="" name="file" size="20">    <input type="submit" value="check"></form><?php    header("Content-type:text/html;charse=utf8");    if(isset($_POST['file'])){        $pic = $_POST['file'];        $pics = explode(".", $pic);        echo "上传文件的扩展名为:".$pics[count($pics)-1];            }?>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表