This article mainly introduces PHP's simple network hard drive, which involves php's skills in creating folders dynamically and uploading files. It has some reference value. If you need it, you can refer to it.
This article mainly introduces PHP's simple network hard drive, which involves php's skills in creating folders dynamically and uploading files. It has some reference value. If you need it, you can refer to it.
This article describes the Simple Network hard drive implemented by PHP. Share it with you for your reference. The details are as follows:
Disk online
Refresh after Operation
<? Php/** code written by mot * 2012-5-20 * Create a folder named x under the root directory to store the uploaded file */if (isset ($ _ REQUEST [' del ']) {unlink ($ _ REQUEST ['del ']);} set_time_limit (0); if (isset ($ _ POST ['click']) if (isset ($ _ FILES ['file']) {move_uploaded_file ($ _ FILES ['file'] ['tmp _ name'], ". \ x \\". $ _ FILES ['file'] ['name']) ;}?>
File Name |
Type |
MD5 |
Size |
Operation |
<? Php $ hl = opendir (". \ x \"); while (false! = $ Info = readdir ($ hl) {if ($ info = '. '| $ info = '.. ') continue; $ x [] = $ info;} if (isset ($ x) foreach ($ x as $ file) {$ type = explode ('. ', $ file); $ name = $ type [0]; $ type = $ type [1]; $ size = sprintf ("%. 2f ", abs (filesize (". \ x \\". $ file)/1024/1024);?>
"> <? = $ Name?> |
<? = $ Type?> |
<? = Md5_file (". \ x \". $ file)?> |
<? = $ Size. "MB"?> |
"> Remove |
<? Php }?>
I hope this article will help you with php programming.
,