从file_get_contents结果中获取新的PHPSESSID(PHP)

时间:2017-02-15 17:10:38

标签: php session cookies file-get-contents

因此http://example.com/test.php为客户端生成PHP会话cookie。

所以我做了

file_get_contents("http://example.com/test.php");

但它只返回HTML源代码(没有标题)。

如何获取该页面设置的PHPSESSID?我不想使用CURL或插件。

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用魔术变量$http_response_header

以这种方式使用:

file_get_contents("http://example.com");
var_dump($http_response_header);

http_response_header的php手册中查找更多信息。