因此http://example.com/test.php为客户端生成PHP会话cookie。
所以我做了
file_get_contents("http://example.com/test.php");
但它只返回HTML源代码(没有标题)。
如何获取该页面设置的PHPSESSID?我不想使用CURL或插件。
谢谢!
答案 0 :(得分:0)
您可以使用魔术变量$http_response_header
。
以这种方式使用:
file_get_contents("http://example.com");
var_dump($http_response_header);
在http_response_header的php手册中查找更多信息。