Jump to content

headers_list() function problem


atitthaker

Recommended Posts

I am having problem regarding headers_list in HTTP functions...
This is my code below:

<?php
ob_start();
setcookie("test1","cookie value");
header("x_sample_test:foo");
header("content-type:text/plain");
print(var_dump(headers_list()));
print(var_dump(headers_sent()));
?>


So as I am sending three header items(rwo cookies & one header) I am getting a blank array when asking for the headers_list().
My function headers_sent() function is returning true.

So that "true" is bcoz of headers I sent or the headers sent by default?

Plz Help.
Link to comment
https://forums.phpfreaks.com/topic/18690-headers_list-function-problem/
Share on other sites

var_dump is a print statement in itself...you can't print a print object if that makes sense
I'm surprised you haven't mentioned an error or something

but anyway...
var_dump(headers_list()); should be sufficient
as well as
var_dump(headers_sent());

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.