|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2015-06-16 11:22 UTC] cmb@php.net
 
-Status: Open
+Status: Feedback
  [2015-06-16 11:22 UTC] cmb@php.net
  [2015-06-16 11:24 UTC] kontakt at kukulich dot cz
  [2015-06-16 11:43 UTC] cmb@php.net
 
-Status: Feedback
+Status: Open
  [2015-06-16 12:42 UTC] laruence@php.net
  [2015-06-16 12:51 UTC] kontakt at kukulich dot cz
  [2015-06-16 12:59 UTC] cmb@php.net
 
-Status: Open
+Status: Verified
  [2015-06-16 12:59 UTC] cmb@php.net
  [2015-06-16 13:02 UTC] cmb@php.net
  [2015-06-16 13:11 UTC] laruence@php.net
 
-Assigned To:
+Assigned To: cmb
  [2015-06-16 13:11 UTC] laruence@php.net
  [2015-06-16 14:12 UTC] kalle@php.net
 
-Status:      Verified
+Status:      Closed
-Assigned To: cmb
+Assigned To: kalle
  [2015-06-16 14:12 UTC] kalle@php.net
  [2015-06-16 14:12 UTC] kalle@php.net
  [2015-06-23 18:04 UTC] ab@php.net
  [2016-07-20 11:38 UTC] davey@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 18:00:01 2025 UTC | 
Description: ------------ There is a bad character at the end of every key of the apache_request_headers output. Test script: --------------- <?php header('Content-Type: text/plain'); var_dump(apache_request_headers()); Expected result: ---------------- array(8) { ["Connection"]=> string(10) "keep-alive" ["Accept-Encoding"]=> string(13) "gzip, deflate" ["Accept-Language"]=> string(23) "cs,en-US;q=0.7,en;q=0.3" ["Accept"]=> string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ["User-Agent"]=> string(72) "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" ["Host"]=> string(9) "localhost:81" ["Content-Length"]=> string(0) "" ["Content-Type"]=> string(0) "" } Actual result: -------------- array(8) { ["Connection�"]=> string(10) "keep-alive" ["Accept-Encoding�"]=> string(13) "gzip, deflate" ["Accept-Language�"]=> string(23) "cs,en-US;q=0.7,en;q=0.3" ["Accept�"]=> string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ["User-Agent�"]=> string(72) "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" ["Host�"]=> string(12) "localhost:81" ["Content-Length�"]=> string(0) "" ["Content-Type�"]=> string(0) "" }