标签:
html
照片:<input type="file" id=‘photo‘ name="photo" /></span> <input type="submit" id=‘submit‘ name="submit" value="上传文件" /> </form> <input type="button" id="btnOk" value="注册" /> <iframe name="frm" style="display:none" ></iframe>
php
if(isset($_POST[‘submit‘])){ $extname=strrchr($_FILES[‘photo‘][‘name‘],‘.‘ );//取文件扩展名 $filename=time().$extname; //获取新的文件名 copy($_FILES[‘photo‘][‘tmp_name‘], ‘upload/‘.$filename); //拷贝文件到指定目录(可指定名称) }
strrchr截取字符串
标签:
原文地址:http://www.cnblogs.com/hhfhmf/p/4799722.html