我在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']
$file
是a three-dimensional array,由name
,tmp_name
,type
,size
和error
的数组组成。这是uploading files in PHP时看到的数组类型。
它调用
move-uploaded-file
,将上载的文件移动到新位置。此函数检查以确保由filename指定的文件是有效的上载文件(意味着它是通过php的http post上载机制上载的)。
如果文件有效,则将其移动到
destination
指定的文件名。