Home >Backend Development >PHP Tutorial >php文件上传获取文件扩展名,运行时会报提醒
php文件上传获取文件扩展名,运行时会报提示
今天练习文件上传操作,但遇到一个很纠结的事
直接看代码:
文件上传页:index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><br /><html><br /><head><br /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><br /><title>Insert title here</title><br /></head><br /><body><br /><form method="post" action="test.php" enctype="multipart/form-data"><br />文件<input type="file" name="up1"/><br/><br /><input type="submit" value="上传"/><br /></form><br /></body><br /></html>
<br />foreach($_FILES as $v){ <br /> $info=pathinfo($v['name']);<br /> //var_dump($info);//查看$info中的信息;<br /> //exit;<br /> //echo $info['extentsion'];//报提示<br /> //exit;<br /> $v['ext']=$info['extension'];//得到文件扩展名<br /> $v['filename']=$info['filename'];//得到文件名<br /> echo $v['ext'];//能得到正确的扩展名<br /> exit; <br />}<br />