PHP 개발 이미지 업로드 업로드는 동일한 페이지를 표시합니다.

사진을 업로드할 때 표시된 사진과 같은 페이지에 있는 경우가 많습니다. 별도의 페이지로 이동할 필요가 없으므로 이 섹션에서는 두 페이지를 병합합니다.]

팁: 로컬에서 실행하려면 코드를 복사해야 합니다

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>图片上传</title>
</head>
<body>
<form id="form1" name="upload" enctype="multipart/form-data" method="post" action="">
    <input type="hidden" name="max_file_size " />
    <input type="file" name="file" />
    <input type="submit" name="submit" value="上传" />
</form>
<div>
    <?php
header("content-type:text/html;charset=utf-8");
class upload
{
 var $upload_name;
 var $upload_tmp_address;
 var $upload_server_name;
 var $upload_filetype ;
 var $file_type;
 var $file_server_address;
 var $image_w=600; //要显示图片的宽
 var $image_h=350; //要显示图片的高
 var $upload_file_size;
 var $upload_must_size= 500000; //允许上传文件的大小,自己设置
 function upload_file()
    {
 $this->upload_name =$_FILES["file"]["name"]; //取得上传文件名
 $this->upload_filetype = $_FILES["file"]["type"];
 $this->upload_server_name = date('y_m_dh_i_s').$this->upload_name;
//    var_dump($this->upload_server_name );
//    exit;
 $this->upload_tmp_address = $_FILES["file"]["tmp_name"]; //取得临时地址
 $this->file_type = array(
 'image/jpg',
 'image/jpeg',
 'image/png',
 'image/gif',); //允许上传文件的类型
 $this->upload_file_size = $_FILES["file"]["size"]; //上传文件的大小
 if(in_array($this->upload_filetype,$this->file_type))
        {
 if($_POST){if($this->upload_file_size < $this->upload_must_size)
        {
 echo("上传成功,谢谢支持");
 $this->file_server_address = "../images/".$this->upload_server_name;
//    var_dump($this->file_server_address );
//    exit;
 move_uploaded_file($this->upload_tmp_address,$this->file_server_address);//从temp目录移出
 echo("<img src=$this->file_server_address width=$this->image_w height=$this->image_h/>"); //显示图片
 }
 else
 {
 echo("文件容量太大");
        }
        }
 else
 {
 echo("不支持此文件类型,请重新选择");
        }
        }
    }
}
$dd = new upload;
$dd->upload_file();
?>
</div>
</body>
</html>

이 코드를 넣어야 하는 페이지에 넣을 수 있습니다


지속적인 학습
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>图片上传</title> </head> <body> <form id="form1" name="upload" enctype="multipart/form-data" method="post" action=""> <input type="hidden" name="max_file_size " /> <input type="file" name="file" /> <input type="submit" name="submit" value="上传" /> </form> <div> <?php header("content-type:text/html;charset=utf-8"); class upload { var $upload_name; var $upload_tmp_address; var $upload_server_name; var $upload_filetype ; var $file_type; var $file_server_address; var $image_w=600; //要显示图片的宽 var $image_h=350; //要显示图片的高 var $upload_file_size; var $upload_must_size= 500000; //允许上传文件的大小,自己设置 function upload_file() { $this->upload_name =$_FILES["file"]["name"]; //取得上传文件名 $this->upload_filetype = $_FILES["file"]["type"]; $this->upload_server_name = date('y_m_dh_i_s').$this->upload_name; // var_dump($this->upload_server_name ); // exit; $this->upload_tmp_address = $_FILES["file"]["tmp_name"]; //取得临时地址 $this->file_type = array( 'image/jpg', 'image/jpeg', 'image/png', 'image/gif',); //允许上传文件的类型 $this->upload_file_size = $_FILES["file"]["size"]; //上传文件的大小 if(in_array($this->upload_filetype,$this->file_type)) { if($_POST){if($this->upload_file_size < $this->upload_must_size) { echo("上传成功,谢谢支持"); $this->file_server_address = "../images/".$this->upload_server_name; // var_dump($this->file_server_address ); // exit; move_uploaded_file($this->upload_tmp_address,$this->file_server_address);//从temp目录移出 echo("<img src=$this->file_server_address width=$this->image_w height=$this->image_h/>"); //显示图片 } else { echo("文件容量太大"); } } else { echo("不支持此文件类型,请重新选择"); } } } } $dd = new upload; $dd->upload_file(); ?> </div> </body> </html>
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!