我在github上找到了一个使用php上传图像的好函数,但是我不知道它的参数之一。

upload_image($_FILES,'file',250,'city',500,'../../uploaded/',1048576);

Function on Github
这个函数中的“file”是什么?
这是在我的网站中使用的受信任的功能吗?

最佳答案

考虑到the lines

$file[$fileIndex]['tmp_name']
$file[$fileIndex]['error']
$file[$fileIndex]['name']
$file[$fileIndex]['type']
$file[$fileIndex]['size']

$filea three-dimensional array,由nametmp_nametypesizeerror的数组组成。
这是uploading files in PHP时看到的数组类型。
它调用move-uploaded-file,将上载的文件移动到新位置。
此函数检查以确保由filename指定的文件是有效的上载文件(意味着它是通过php的http post上载机制上载的)。
如果文件有效,则将其移动到destination指定的文件名。

10-06 05:14