Fix #37283 (sync with a bug fixed in 5.1.3)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@212343 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Etienne Kneuss 2006-05-03 11:29:06 +00:00
parent 4ad28c6df3
commit 41167bc39e

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<refentry id="function.headers-list">
<refnamediv>
<refname>headers_list</refname>
@ -46,13 +46,13 @@ var_dump(headers_list());
<![CDATA[
array(4) {
[0]=>
string(12) "X-Powered-By"
string(23) "X-Powered-By: PHP/5.1.3"
[1]=>
string(10) "Set-Cookie"
string(19) "Set-Cookie: foo=bar"
[2]=>
string(13) "X-Sample-Test"
string(18) "X-Sample-Test: foo"
[3]=>
string(12) "Content-type"
string(24) "Content-type: text/plain"
}
]]>