使用file_get_contents发送cookie

时间:2013-01-11 06:01:27

标签: php curl file-get-contents

在我的脚本中,我需要通过HTTP post方法将数据发送到页面,服务器将设置一些cookie并将其发送回给我。对于进一步的请求,我需要使用此cookie进行服务器访问..我使用stream_context_create()和file_get_contents()为此编写了一个函数 但是我无法发送cookie。我怀疑问题是因为我无法发送cookie路径和日期以及cookie。所以任何人都可以解决这个问题。我不需要基于CURL的解决方案 我的功能如下 (我在pastebin中粘贴它,因为这里有缩进问题) http://pastebin.com/QQ1GxzdY

1 个答案:

答案 0 :(得分:1)

我认为stream_context_create()和file_get_contents()是文件流。因此,您可以先干扰cookie,然后使用stream_context_create()或file_get_contents()执行某些操作。