我可以任意设置$_FILE全局吗

发布于 2024-10-17 17:38:21 字数 344 浏览 4 评论 0原文

我有一个函数,不是由我编写的,它使用超级全局 $_FILE['picture']['temp_name'] 来创建图像文件和缩略图。但是,当用户不上传图像时,不会创建图像或缩略图,并且使用这些图像进行显示的另一个应用程序会变得混乱。

因此,当用户没有上传图像时,我想任意将 $_FILE['picture']['temp_name'] 设置为服务器中存储的图像,并传递 $_FILE['picture']['temp_name' ] 到我首先提到的功能。

我的问题是,我可以任意设置超级全局 $_FILE['picture']['temp_name'] = file_path/preset_image.jpg 吗?

谢谢你,

I have a function, not coded by me that uses the super global $_FILE['picture']['temp_name'] to create an image file and thumbnails. However, when a user does not upload an image, no image nor thumbnails get created, and another application that uses these images for display gets messed up.

So, when a user does not upload an image, I would like to arbitrarily set $_FILE['picture']['temp_name'] to an image stored in the server, and passed $_FILE['picture']['temp_name'] to the function I first mentioned.

My question is, can I arbitrarily set the super global $_FILE['picture']['temp_name'] = file_path/preset_image.jpg ?

Thank you,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城半夏 2024-10-24 17:38:21

是的,您可以,尽管通常不建议这样做(仅作为解决现有软件限制的方法,如您所描述的那样)。

Yes you can, though it is generally not recommended (only as a hack to get around existing software limitations, like the ones you described).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文