/**
* bkJia.com - Personally, I feel it is very simple. Anyone with some basic knowledge of PHP should be able to understand it~~
* Apache2 + PHP5.0
* Version:1.0
* Thanks to all the brothers at bkJia
* ————————————————————————————————— Example —
* test.php @ processing form file name
*
*
* include("upload.php");
* $f_upload = new upload_other;
* $f_upload->set_file_type($_FILES[src][type]); # Get file type
* $f_upload->set_file_name($_FILES[src][name]); # Get file name
* $f_upload->set_file_size($_FILES[src][size]); # Get file size
* $f_upload->set_upfile($_FILES[src][tmp_name]); # Temporary file name stored on the server
* $f_upload->set_size(100);
* $f_upload->set_base_directory("uploadImages"); #File storage root directory name
* $ F_upload- & gt; set_url ("up.php"); # files that are transferred after the file upload successfully
* $f_upload->save();
*
* ?>
* —————————————————————————————————— End —
*
* I haven’t verified whether there is a file in the class, you can do it at the front desk~~
*
* —————————————————————————— Form —
* upload.htm @ form file name
*
*
*
*
*
*
*
*
*
*
* ———————————————————————————— End —
*
* The above two files can be merged or not merged according to your own needs~~If you have any questions during use, please contact me~~^_^
*
**/
/**File upload class**/
class upload_file
{
/**statement**/
var $upfile_type,$upfile_size,$upfile_name,$upfile;
var $d_alt,$extention_list,$tmp,$arri;
var $datetime,$date;
var $filestr,$size,$ext,$check;
var $flash_directory,$extension,$file_path,$base_directory;
var $url; //Jump path after successful file upload;
function upload_file()
{
/**Constructor**/
$this->set_url("index.php"); //Jump path after initial upload is successful;
$this->set_extention(); //Initialize extension list;
$this->set_size(50); //Initialize upload file KB limit;
$this->set_date(); //Set the directory name;
$this->set_datetime(); //Set the file name prefix;
$this->set_base_directory("attachmentFile"); //Initialization file upload root directory name, can be modified! ;
}
/**File type**/
function set_file_type($upfile_type)
{
$this->upfile_type = $upfile_type; //Get the file type;
}
/**Get file name**/
function set_file_name($upfile_name)
{
$this->upfile_name = $upfile_name; //Get the file name;
}
/**Get file**/
function set_upfile($upfile)
{
$this->upfile = $upfile; //Get the temporary file name of the file stored on the server;
}
/**Get file size**/
function set_file_size($upfile_size)
{
$this->upfile_size = $upfile_size; //Get file size;
}
/**Set the jump path after successful file upload**/
function set_url($url)
{
$this->url = $url; //Set the jump path after successfully uploading the file;
}
/**Get file extension**/
function get_extension()
{
$this->extension = preg_replace(/.*.(.*[^.].*)*/iU,1,$this->upfile_name); //Get the file extension;
}
/**Set file name**/
function set_datetime()
{
$this->datetime = date("YmdHis"); //Generate file name by time;
}
/**Set directory name**/
function set_date()
{
$this->date = date("Y-m-d"); //Generate directory name by date;
}
/**Initialize to allow uploadInitialize allowed upload file types**/
function set_extension()
{
$this->extension_list = "doc|xls|ppt|avi|txt|gif|jpg|jpeg|bmp|png"; //Extension names allowed to be uploaded by default;
}
/**Set maximum upload KB limit**/
function set_size($size)
{
$this->size = $size; //Set the maximum file size allowed to be uploaded;
}
/**Initialization file storage root directory**/
function set_base_directory($directory)
{
&n

硬盘序列号是硬盘的一个重要标识,通常用于唯一标识硬盘以及进行硬件识别。在某些情况下,我们可能需要查询硬盘序列号,比如在安装操作系统、查找正确设备驱动程序或进行硬盘维修等情况下。本文将介绍一些简单的方法,帮助大家查询硬盘序列号。方法一:使用Windows命令提示符打开命令提示符。在Windows系统中,按下Win+R键,输入"cmd"并按下回车键即可打开命

如何通过PHP编写一个简单的在线预约系统随着互联网的普及和用户对便利性的追求,在线预约系统越来越受到欢迎。无论是餐厅、医院、美容院还是其他服务行业,都可以通过一个简单的在线预约系统来提高效率并为用户提供更好的服务体验。本文将介绍如何使用PHP编写一个简单的在线预约系统,并提供具体的代码示例。创建数据库和表格首先,我们需要创建一个数据库来存储预约信息。在MyS

如何使用Java编写一个简单的学生成绩报表生成器?学生成绩报表生成器是一个可以帮助老师或教育者快速生成学生成绩报告的工具。本文将介绍如何使用Java编写一个简单的学生成绩报表生成器。首先,我们需要定义学生对象和学生成绩对象。学生对象包含学生的姓名、学号等基本信息,而学生成绩对象则包含学生的科目成绩和平均成绩等信息。以下是一个简单的学生对象的定义:public

快速入门:使用Go语言函数实现简单的图书管理系统引言:随着计算机科学领域的不断发展,软件应用的需求也越来越多样化。图书管理系统作为一种常见的管理工具,也成为很多图书馆、学校和企业必备的系统之一。在本文中,我们将使用Go语言函数来实现一个简单的图书管理系统。通过这个例子,读者可以学习到Go语言中函数的基本用法以及如何构建一个实用的程序。一、设计思路:我们首先来

如何通过C++编写一个简单的音乐推荐系统?引言:音乐推荐系统是现代信息技术的一个研究热点,它可以根据用户的音乐偏好和行为习惯,向用户推荐符合其口味的歌曲。本文将介绍如何使用C++编写一个简单的音乐推荐系统。一、收集用户数据首先,我们需要收集用户的音乐偏好数据。可以通过在线调查、问卷调查等方式来获得用户对不同类型音乐的喜好程度。将数据保存在一个文本文件或数据库

如何使用PHP开发简单的文件管理功能简介:文件管理功能在很多Web应用中都是必不可少的一部分。它允许用户上传、下载、删除和展示文件,为用户提供了便捷的文件管理方式。本文将介绍如何使用PHP开发一个简单的文件管理功能,并提供具体的代码示例。一、创建项目首先,我们需要创建一个基本的PHP项目。在项目目录下创建以下文件:index.php:主页面,用于显示上传表

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

简单计算器是执行一些基本运算的计算器,例如“+”、“-”、“*”、“/”。计算器可以快速完成基本操作。我们将使用switch语句来制作一个计算器。示例Operator−‘+’=>34+324=358Operator−‘-’=>3874-324=3550Operator−‘*’=>76*24=1824O


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
