1
因此http://example.com/test.php爲客戶端生成一個PHP會話cookie。從file_get_contents獲取新的PHPSESSID結果(PHP)
所以我做
file_get_contents("http://example.com/test.php");
但它返回我只有HTML源(無頭)。
如何獲取該頁面設置的PHPSESSID?我不想使用CURL或插件。
謝謝!
因此http://example.com/test.php爲客戶端生成一個PHP會話cookie。從file_get_contents獲取新的PHPSESSID結果(PHP)
所以我做
file_get_contents("http://example.com/test.php");
但它返回我只有HTML源(無頭)。
如何獲取該頁面設置的PHPSESSID?我不想使用CURL或插件。
謝謝!
你可以使用魔術變量$http_response_header
。
使用這種方式:
file_get_contents("http://example.com");
var_dump($http_response_header);
發現在PHP手冊http_response_header更多信息。