如何添加cookie来请求PHP/GD imagecreatefromJPEG?
我正在使用 PHP GD 从远程服务器获取图像。 $res=imagecreatefromJPEG ($url);
我需要设置一个带有值的 cookie 以及获取图像的调用。
GD可以做到这一点吗? 我该怎么做呢?
谢谢
I'm using PHP GD to fetch an image from a remote server.
$res=imagecreatefromJPEG ($url);
I need to have a cookie set with a value along with the call to get the image.
Is this possible with GD?
How would I do that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 stream_context_set_default 和 标头选项 用于发送 cookie 标头。
Use stream_context_set_default and the header option to send a cookie header.