file_exist() php函数会导致服务器负载过高吗?
我正在尝试检查用户是否上传了他或她的头像图像,并且我使用 file_exist() php 函数来检查用户头像图像是否存在,
这会导致大流量网站的服务器负载问题吗?
谢谢
i am trying to check if user uploaded his or her avatar image and i use file_exist() php function to check if the user avatar image exist or not
will this cause any server load problem with massive traffic websites ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,不会,这里是 file_exists 的文档。它还缓存结果,从而进一步提高性能。
No it will not, here is the documentation for file_exists. It also caches the results, so that further improves performance.
完全相同的问题已经被之前问过。
简短的回答是:不。
The exact same question has been asked here before.
The short answer was: no.