什么是" $ _ FILES腐败攻击"

时间:2014-12-07 21:00:38

标签: php

我在这里看到了以下用于验证上传文件的代码: http://php.net/manual/en/features.file-upload.php

// Undefined | Multiple Files | $_FILES Corruption Attack
// If this request falls under any of them, treat it invalid.
if (
    !isset($_FILES['upfile']['error']) ||
    is_array($_FILES['upfile']['error'])
) {

但是什么是" $ _ FILES腐败攻击"? (如何)上述守则会阻止它? 如果我想启用多个文件上传,我该如何更改?

0 个答案:

没有答案