Home > Article > Backend Development > PHP multi-file upload code implements PHP multi-file upload function (1/2)_PHP tutorial
php multi-file upload code implements php multi-file upload function This article uses the PHP multi-file upload class to implement it, and gives an example of implementing PHP multi-file upload. The most important thing about multi-file upload is that the attributes of the file must be in the form of an array and be read one by one using foreach or for using move_uploaded_file. Upload files to the server to achieve multiple file uploads.
php tutorial multi-file upload code to implement php multi-file upload function
This article uses the PHP multi-file upload class to implement it, and gives an example of implementing PHP multi-file upload. The most important thing about multi-file upload is that the attributes of the file must be in the form of an array and be read one by one using foreach or for using move_uploaded_file. Upload files to the server to achieve multiple file uploads.
*/
?>
php multiple file upload code
server.php
//upload array files
include 'upload.class.php';
$u = new upload('../uploads/product/','spec','group');
print_r($u->getnewname());
echo $u->geterror();
/***********************
//upload single file
$u = new upload('../www.bKjia.c0m/product/','spec');
print_r($u->getnewname());
$u = new upload('../mb.bKjia.c0m/product/','manual');
print_r($u->getnewname());
echo $u->geterror();
************************/
?>
1 2