0

由于代码问题,我正在寻找一种替代方法来获取 $_FILES 中的数据

在此处输入图像描述

我不知道如何不直接使用超全局变量。

我不能filter_input像我一样使用来解决同样的问题$_POST

在此之下,我的表格:

<form class="d-flex flex-column" method="post" action="/image/update/99/trick/144" enctype="multipart/form-data">
    <input type="file" name="newImg">
    <button type="submit">Modifier l'image</button>
</form>
4

1 回答 1

0

如果您完全禁止使用超全局变量,请使用 tmp 文件。

您可以阅读其内容并将其写入其他地方。但出于安全目的,请先检查所有内容:扩展名、大小以及此处(因为它是图像)的尺寸。

于 2020-11-29T23:40:13.047 回答