이미지 표시 기능이 있는 PHP 파일 업로드 클래스입니다. 실제로 함수로 만들 수도 있지만, 클래스로 만드는 것이 더 재미있습니다.~~
업로드된 내용을 확인하려면 JS를 사용했어야 했습니다. 그러나 나는 그것을 하기에는 너무 게으르다.
제목 없는 문서
수업 업로드
{
var $upload_tmp_address;
var $upload_filetype ;
var $file_type;
var $image_w=900; 🎜> var $image_h=350; //필수 이미지 높이 표시
var $upload_file_size;
var $upload_must_size= 50000; //업로드된 파일의 크기를 허용하고, 직접 설정하세요.
함수 upload_file()
{
$this->upload_name = $_FILES["file"]["name"] //업로드된 파일 이름 가져오기
$this->upload_filetype = $ _FILES["file"]["type"];
$this-> ;upload_server_name = 날짜("Y_m_dH_i_s").$this->upload_name;
$this->upload_tmp_address = $_FILES[" file"]["tmp_name"]; //임시 주소 가져오기
$this ->file_type = array("image/gif","image/pjpeg"); //업로드가 허용되는 파일 형식
$this->upload_file_size = $_FILES["file"]["size"]; //업로드된 파일의 크기
if(in_array($this->upload_filetype,$this->file_type ))
{ if($this->upload_file_size < $this->upload_must_size)
{
echo("업로드가 완료되었습니다. 지원해 주셔서 감사합니다.")
$this- >file_server_address = "D:usrwwwhtmlupload/".$this->upload_server_name;
move_uploaded_file($this-> ;upload_tmp_address,$this->file_server_address);//TEMP 디렉터리 밖으로 이동
echo ("
file_server_address width=$this->image_w height=$this->image_h ;
{
echo("이 파일 형식은 지원되지 않습니다. 다시 선택하세요. ");
}
}
}
$dd = 새 업로드;
$dd-> ;upload_file();
?>
위 내용은 무료 이미지 업로드 내용을 포함하여 이미지 표시 기능이 있는 무료 이미지 업로드 PHP 이미지 업로드 클래스를 소개하고 있으니 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.