PHP file upload is something that every programmer will encounter. So how much do you know about PHP file upload? This article mainly describes the detailed method of uploading PHP files. You can refer to it.
1. General file upload, unless the file is very small. Like a 5M file, it may take more than a minute to upload. But in PHP, the default maximum execution time of this page is 30 Seconds. That is to say, if it exceeds 30 seconds, the script will stop executing. This will result in the inability to open the web page. At this time, we can modify max_execution_time
Look for
max_execution_time# in php.ini ##The default is 30 seconds. Change it to
max_execution_time = 00 to indicate no limit.Another method is to add
set_time_limit();to the php program to set the maximum page time. Execution time.
set_time_limit(0);//0表示没有限制2. Modify post_max_size to set the maximum size allowed for POST data. This setting also affects file uploads. The default post_max_size of php is 2M. If the POST data size is greater than post_max_size $_POST and $_FILES superglobals will be empty. Find post_max_size. Change it to
post_max_size = 150M3. Many people will change the second step. But when uploading files, the maximum is still 8M. Why? We also need to change a parameter upload_max_filesize to indicate the maximum size of the uploaded file. Look for upload_max_filesize, the default is 8M and change it to
upload_max_filesize = 100MAnother thing to note is: post_max_size is better than upload_max_filesize. File upload analysis: File upload uses the POST method. A basic file upload form is as follows: fileupload.htm
<form enctype="multipart/form-data" action="dealfileupload.php" method="POST">Select the Uploaded file:
<input name="userfile" type="file"/> <input type="submit" value="上传"/> </form>What needs to be noted is the value of the enctype attribute and the name attribute in the file control, which are used to identify the uploaded file. The processing script for this form is as follows: dealfileupload.php
<?php $docroot=$_SERVER['DOCUMENT_ROOT']; $fileupload=$docroot."/upload/".$_FILES['userfile']['name']; if (move_uploaded_file($_FILES['userfile']['tmp_name'],$fileupload)) { echo "文件上传成功"; } else { echo "文件上传失败"; } ?>If the upload is successful, the file will be saved to the upload directory under the root directory of the website. Let's analyze this simple processing script. 1.1 $_FILES array1, $_FILES system function
bool move_uploaded_file (string filename, string destination)This function is specifically responsible for transferring uploaded files. filename represents the complete temporary file name, usually $_FILES['file1']['tmp_name']; destination represents the complete destination file name, generally $_SERVER['DOCUMENT_ROOT']."/upload/".$_FILES[ 'file1']['name']. If the upload is successful, 1 is returned, otherwise 0 is returned and an error is reported. If you want to hide the error message, you can write like this: @move_uploaded_file(...)1.3 If you need to upload multiple files, you can set multiple file controls. Note that the name attribute must be set to different values. For example: filesupload.htm
<form enctype="multipart/form-data" action="dealfilesupload.php" method="POST">Select the file to upload 1:
<input name="file1" type="file"/>Select the file to upload 2:
<input name="file2" type="file"/>
<input type="submit" value="上传"/> </form> dealfilesupload.php <?php $docroot=$_SERVER['DOCUMENT_ROOT']; $file1upload=$docroot."/upload/".$_FILES['file1']['name']; $file2upload=$docroot."/upload/".$_FILES['file2']['name']; if (@move_uploaded_file($_FILES['file1']['tmp_name'],$file1upload)) { echo "文件1上传成功"; } else { echo "文件1上传失败"; } print "<br/>"; if (@move_uploaded_file($_FILES['file2']['tmp_name'],$file2upload)){ echo "文件2上传成功"; }else{ echo "文件2上传失败"; } ?>1.4 PHP generates HTML File principle1. Part of PHP file operation functions(1) fopen open file functionfopen (path and file name, opening method); //R-only Read W - Write A - Read and write 'r' Open in read-only mode and point the file pointer to the file header. 'r+' Open in read-write mode and point the file pointer to the file header. 'w' turns on writing mode, points the file pointer to the file header and truncates the file size to zero. If the file does not exist, try to create it. 'w+' Open in read-write mode, point the file pointer to the file header and truncate the file size to zero. If the file does not exist, try to create it. 'a' Open writing mode and point the file pointer to the end of the file. If the file does not exist, try to create it. 'a+' Open in read-write mode and point the file pointer to the end of the file. If the file does not exist, try to create it. (2) fread reads the file contentfread (open file, end position);//in bytes(3) filesize reads the file size , in bytes as the unit of measurement, for files between 2~4GB, you can use sprintf("%u", filesize($file))//(formatted output function) to process filesize ( path and file name);
(4) fwrite 写入文件内容
fwrite (打开的文件,写入的内容);
(5) fclose 关闭打开的文件
fclose (打开的文件);
(6) file_get_contents(“路径和文件名”);//功能是读取整个文件内容
(7) file_ exists(path);//函数检查文件或目录是否存在
(8) chmod(相对路径,代表PHP可访问的权限数值八进制);//更改文件或文件夹的访问权限模式
2、目录操作常用函数
mkdir() 建立新目录函数
语法:
mkdir(path,[int mode,][recursive,][context])
说明:path是必须参数,给出将要新建的文件夹所在的路径和名称,最好是使用绝对路径;mode是可选参数,默认值是0777(尝试以最大目录权限进行操作),该参数是八进制,即要设置该参数就必须将数值以0开头;recursive是可选参数,指出是否使用递归模式;context是可选参数,规定文件句柄的环境。Context 是可修改流的行为的一套选项。创建成功返回TRUE,否则返回FALSE。
rmdir()删除一个指定名称的空目录
语法:rmdir(目录路径和名称)
说明:尝试删除 目录路径和名称 所指定的目录。该目录必须是空的,而且要有相应的权限。如果成功则返回 TRUE,失败则返回 FALSE。
unlink() 删除文件函数
语法:unlink(路径和文件名)
说明:删除 路径和文件名称 所指定的文件。和 Unix C 的 unlink() 函数相似。如果成功则返回 TRUE,失败则返回 FALSE。
3、其它文件操作函数
(1)string basename(string path [,string suffix]) ,path参数给出一个文件的全路径字符串,函数返回基本的文件名。如文件名以suffix结束,则去掉这部分
(2)string dirname(string path) ,返回路径中的目录部分。
(3)array pathinfo(string path) ,返回文件路径的信息,包含以下的数组单元dirname,basename,extension.
(4)string realpath(string path) ,返回规范化的绝对路径名
(5)bool copy( string source ,string dest) ,将文件从source复制到dest
例:copy("hello.txt","temp.php");
(6)float disk_free_space(string directory ) ,返回目录中的可用空间
例:$df = disk_free_space("F:\");
echo $df.''
'';
(7)float disk_total_space(string directory) ,获取指定磁盘总空间
例:
$df=disk_total_space("F:\"); echo $df.''<br>'';
(8)int file_put_contents(string filename,string data[,int flags[,resource context]]),将一个字符串写入文件
(9)string file_get_contents(string filename [,int use_include_path[,resource context]]) ,将整个文件作为一个字符串读入。不需要之前fopen()
例:
$lines=file_get_contents("hello.txt"); echo nl2br($lines);
(10)int fileatime(string filename) ,取得文件的上次访问时间
例:
echo date("F d Y H:i:s",fileatime($filename);
(11)int filemtime(string filename),取得文件的最近修改时间
例:
echo date("F d Y H:i:s",filemtime($filename);
(12)array stat(string filename) 给出文件的信息or lstat( string filename) or fstat( resource handle)
例:
$fileinfo =stat($filename);
echo "<table border=1><th>数字下标</th><th>关键(自PHP 5.1.4)</th>"; foreach($fileinfo as $num=>$info) { echo "<tr><td>".$num."</td><td>".$info."</td></tr>"; } echo "</table>";
(13)string filetype(string filename) ,获取文件的类型
例:echo filetype($filename);
(14)bool is_dir(string filename) ,判断给定的文件名是否是一个目录
例:
if(is_dir($filename)) echo $filename.''为目录<br>''; else echo $filename.''非目录<br>'';
(15)bool flock(int handle,int operation [,int &wouldblock]) ,进行文件锁定
operation: LOCK_SH:共享锁定
LOCK_EX: 独占锁定
LOCK_UN: 释放锁定
(16)bool is_uploaded_file(string filename)
判断文件是否通过HTTP POST上传
(17)bool move_uploaded_file(string filename,string destination)
检测文件是否是合法的上传文件,是则移动到destination 指定的文件
(18)array file(path,include_path,context)
函数把整个文件读入一个数组中。与 file_get_contents() 类似,不同的是 file() 将文件作为一个数组返回。数组中的每个单元都是文件中相应的一行,包括换行符在内。如果失败,则返回 false。
path 必需。规定要读取的文件。include_path 可选。如果也想在 include_path 中搜寻文件的话,可以将该参数设为 "1"。context 可选。规定文件句柄的环境。 context 是一套可以修改流的行为的选项。若使用 null,则忽略。
注释:如果碰到 PHP 在读取文件时不能识别 Macintosh 文件的行结束符,可以激活 auto_detect_line_endings 运行时配置选项。
(19) string fgetss()
fgetss() 函数从打开的文件中读取一行并过滤掉 HTML 和 PHP 标记。与 fgets() 相同,不同的是 fgetss 尝试从读取的文本中去掉任何 HTML 和 PHP 标记。
使用方法:fgetss(file,length,tags)
file 必需。规定要读取的文件。length 可选。规定要读取的字节数。默认是 1024 字节。该参数在 PHP 5 之前是必需的。tags 可选。规定将被删除的标签。可以用可选的第三个参数 tags 指定哪些标记不被去掉。若失败,则返回 false。
<?php $file = fopen("test.htm","r"); echo fgetss($file,1024,"<p>,<b>");//保留p和b标记 fclose($file); ?>
(20) string fgets()
fgets() 函数从文件指针中读取一行。file 必需。规定要读取的文件。length 可选。规定要读取的字节数; 默认是 1024 字节。
从 file 指向的文件中读取一行并返回长度最多为 length - 1 字节的字符串。碰到换行符(包括在返回值中)、EOF 或者已经读取了 length - 1 字节后停止(要看先碰到那一种情况)。如果没有指定 length,则默认为 1K,或者说 1024 字节。
若失败,则返回 false。
4、遍历文件夹中的文件
$dir=opendir(''文件夹路径名'');//打开文件夹,返回一个文件夹对象(句柄)
while($fileName=readdir($dir))//readdir(参数是用opendir打开的文件夹对象名),每执行一次都会
取出指定文件夹中的一个文件名称,且文件指针向下移动一个
{ echo ''fileName=''.$fileName. ''<br />'';//输出取得的文件名 } ?>
opendir() 函数返回一个目录句柄即文件夹对象,可由 closedir(),readdir() 和 rewinddir() 使用。
若成功,则该函数返回一个目录流,否则返回 false 以及一个 error。可以通过在函数名前加上 "@" 来隐藏 error 的输出。
readdir() 函数返回由 opendir() 打开的目录句柄中的文件名称。若成功,则该函数返回一个文件名,否则返回 false。
5、文件上传成功后要清除其所占用的内存,方法是使用imagedestroy()函数。详见手册
篇幅有点长,希望帮助到大家,让大家对PHP文件上传有更清楚的思路。
相关推荐:
The above is the detailed content of PHP file upload analysis. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
