我在github上发现了一个很好的函数,用于使用php上传图像,但我不知道它的一个参数。
upload_image($_FILES,'file',250,'city',500,'../../uploaded/',1048576);
答案 0 :(得分:2)
考虑the lines:
$file[$fileIndex]['tmp_name']
$file[$fileIndex]['error']
$file[$fileIndex]['name']
$file[$fileIndex]['type']
$file[$fileIndex]['size']
$file
是a three-dimensional array,由name
,tmp_name
,type
,size
,error
的数组组成。<登记/>
这是uploading files in PHP时看到的那种数组。
它调用move-uploaded-file
,将上传的文件移动到新位置。
此函数检查以确保filename指定的文件是有效的上载文件(意味着它是通过PHP的HTTP POST上传机制上传的)。 如果文件有效,它将被移动到
destination
给出的文件名。