PHP | GD 函数还是 Curl?就内存利用率和加载时间而言,哪个更好?
我使用 GD 和 Curl(一个或另一个)将远程 jpeg 图像下载到我的服务器。我只是想快速建议一下使用哪种方法?哪种方法占用的系统资源更少?
I am using both GD and Curl(one or other) for downloading remote jpeg images to my server. I just want a quick suggestion on which method to use? Which method takes less system resources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了获得加载时间,请尝试使用它们(GD 和 CURL)创建复杂图像,在每个操作开始时设置微时间并在结束时计算时间差。自己做个测试就可以了。
关于内存使用(系统资源),我不太确定,但我认为没有那么大的区别。
对我个人来说,GD 和 Curl 是平等的。
To get load time try to create complex image with both of them (GD and CURL), set microtime at the start of each operation and calculate time-difference at the end. Just do a test at your own.
About memory usage (system resources), I'm not so sure, but I think there's no such big difference.
For me personally, GD and Curl are equal.