欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php使用post方式获得文件扩展名,_PHP教程

程序员文章站 2024-02-18 19:34:39
...

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


php header("Content-type:text/html;charse=utf8"); if(isset($_POST['file'])){ $pic = $_POST['file']; $pics = explode(".", $pic); echo "上传文件的扩展名为:".$pics[count($pics)-1]; } ?>

php使用post方式获得文件扩展名,_PHP教程

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1052440.htmlTechArticlephp使用post方式获得文件扩展名, form action="" method="post" input type="file" value="" name="file" size="20" input type="submit" value="check"/form? php header ("Conte...