ID: 29683
Comment by: rd dot contact at free dot fr
Reported By: ca533512 at tiscali dot cz
Status: Open
Bug Type: Unknown/Other Function
Operating System: Win2k SP4
PHP Version: 5.0.1
New Comment:
Same bug on win xp and apache 2.52
Same code from PHP doc tested with today's (15 Fev 2005)
5.03
5.04dev
5.1.0dev
Previous Comments:
------------------------------------------------------------------------
[2005-01-09 19:04:19] tiagojcb at hotmail dot com
Hi !
Server version: Apache/2.0.52
Server built: Oct 20 2004 11:51:56
Loaded Modules core mod_access mod_auth mod_include mod_log_config
mod_env mod_setenvif mod_ssl prefork http_core mod_mime mod_asis
mod_negotiation mod_dir mod_imap mod_actions mod_so mod_php5
PHP 5.0.3 (cli) (built: Jan 9 2005 15:46:57)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v2.0.3, Copyright (c) 1998-2004 Zend Technologies
If I run the example code from the CLI, it works.
>From apache it return an empty array.
It's running on a Slackware Linux and php was built with './configure'
'--with-apxs2=/usr/local/apache/bin/apxs' '--with-gd'
'--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--with-zlib'
'--enable-memory-limit' '--with-pgsql=/usr/local/pgsql'
'--prefix=/usr/local/php' '--without-mysql'
Thanks for any help.
------------------------------------------------------------------------
[2004-08-24 06:38:42] [EMAIL PROTECTED]
This is also reproducible with Apache 1.3.x SAPI.
It happens because sapi_module.header_handler (particularly
sapi_apache_header_handler() with Apache 1.3.x) returns 0 instead of
SAPI_HEADER_ADD and headers just don't get to SG(sapi_headers).
------------------------------------------------------------------------
[2004-08-23 19:59:52] ca533512 at tiscali dot cz
Apache 2.0.50
-- php: `original` for win32 from php.net
------------------------------------------------------------------------
[2004-08-23 18:59:21] [EMAIL PROTECTED]
What SAPI are you using?
------------------------------------------------------------------------
[2004-08-14 23:58:00] ca533512 at tiscali dot cz
Description:
------------
If I try code from PHP docs of headers_list() function, browser print
only empty array.
or this function is not available on win OS ?
Reproduce code:
---------------
/* setcookie() will add a response header on its own */
setcookie('foo', 'bar');
/* Define a custom response header
This will be ignored by most clients */
header("X-Sample-Test: foo");
/* Specify plain text content in our response */
header('Content-type: text/plain');
/* What headers are going to be sent? */
var_dump(headers_list());
Expected result:
----------------
array(4) {
[0]=>
string(29) "X-Powered-By: PHP/5.0.0" // ... 5.0.1
[1]=>
string(19) "Set-Cookie: foo=bar"
[2]=>
string(18) "X-Sample-Test: foo"
[3]=>
string(24) "Content-type: text/plain"
}
Actual result:
--------------
array(0) {
}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=29683&edit=1