php 파일 업로드 클래스 전체 인 스 턴 스
3380 단어 php파일 업로드 클래스
/**
$file=new class_file($file_array,"flash/");
$file->set_allow_type(array("jpg","jpeg","gif"));
$file->is_limit_size();
if(!$file->allow_file_size()){
echo $file->error;
exit;
}
if(!$file->allow_file_type()){
echo $file->error;
exit();
}else if(!$file->uploadfile()){
echo $file->error;
exit;
}
**/
<?php
class class_file{
private $file_type;
private $file_size;
private $save_path;
private $file_path;
private $allow_type=array();
private $allow_size;
private $file_name;
private $flag=false;
private $mime_type;
private $is_limit_size=false;
public $error;
//
function class_file($file_array,$save_path){
$this->file_path=$file_array['tmp_name'];
$this->file_size=$file_array['size'];
$this->file_type=$file_array['type'];
$this->save_path=$save_path;
}
//
function set_allow_type($allow_type){
$this->allow_type=$allow_type;
}
//
function set_allow_size($allow_size){
$this->allow_size=$allow_size;
}
//
public function uploadfile(){
if(!$this->allow_file_type()){
$this->file_name();
}
if(move_uploaded_file($this->file_path,$this->save_path.$this->file_name)){
return true;
}else{
$this->error=" ";
return;
}
}
//
function allow_file_type(){
$this->file_name();
if(in_array($this->mime_type,$this->allow_type)){
return true;
}else{
$this->error=" ";
exit();
}
}
//
function allow_file_size($size=100){
if($this->is_limit_size){
$this->set_allow_size($size);
if($this->allow_size>=$this->file_size){
return true;
}else{
$this->error=" ";
}
}
}
//
function is_limit_size(){
$this->is_limit_size=true;
}
//
function file_name(){
$this->mime_type=substr($this->file_type,strpos($this->file_type,"/")+1);
if($this->mime_type=="pjpeg"){
$this->mime_type="jpg";
}
if($this->mime_type=="x-ms-wma"){
$this->mime_type="wma";
}
if($this->mime_type=="x-ms-wmv"){
$this->mime_type="wmv";
}
$this->file_name=date("YmdHis").".$this->mime_type";
}
function _get_file_name(){
return $this->file_name;
}
}
?>
더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.