PHP 이미지 업로드 코드 예
풀어 주다: 2016-07-25 08:45:13
PHP 文件上传代码示例
- 图片上传
- 上传文件:
- //能够上传的类型
- $uptypes=array('image/jpg','image/jpeg','image/png','image/pjpeg','image/gif',
- 'image/bmp','image/x-png');
- ?>
- 允许上传的文件类型为:=implode(',',$uptypes)?>
- $max_file_szie=2*pow(2,20); //上传的文件小于2MB
- $destination_folder='uploadimg/'; //上传文件保存路径
- if($_SERVER['REQUEST_METHOD']=='POST'){
- if(!is_uploaded_file($_FILES['upfile']['tmp_name'])){
- echo '图片不存在!';
- exit;
- }
- if($max_file_szie<$_FILES['upfile']['size']){
- echo '文件太大了!';
- exit;
- }
- if(!in_array($_FILES['upfile']['type'],$uptypes)){
- echo '文件类型不符合!'.$_FILES['upfile']['type'];
- exit;
- }
- if(!file_exists($destination_folder)){
- mkdir($destination_folder);
- }
- $filename=$_FILES['upfile']['tmp_name'];
- $image_size=getimagesize($filename);
- $pinfo=pathinfo($_FILES['upfile']['name']); //文件路径信息
- $ftype=$pinfo['extension']; //旧文件后缀名
- $destination = $destination_folder.time().".".$ftype; //新文件名称
- if(file_exists($destination)&&$voerwrie !=true){
- echo '同名文件已经存在了!';
- exit;
- }
- //把上传的文件从临时文件夹移动到指定目录
- if(!move_uploaded_file($filename,$destination)){
- echo '移动文件出错了!';
- exit;
- }
- $pinfo=pathinfo($destination);
- $fname=$pinfo[basename];
- echo "已经成功上传
文件名:
- ".$destination_folder.$fname."
";
- echo '宽度:'.$image_size[0];
- echo '高度:'.$image_size[1];
- echo '
大小:'.$_FILES['upfile']['size']."bytes";
- }
- ?>
复制代码
|
이미지 업로드, PHP
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31