|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2011-11-22 11:04 UTC] laruence@php.net
 
-Status: Open
+Status: Feedback
  [2011-11-22 11:04 UTC] laruence@php.net
  [2011-11-22 11:21 UTC] derick@php.net
  [2011-11-22 13:21 UTC] mapi at pdepend dot org
  [2011-11-22 13:21 UTC] mapi at pdepend dot org
 
-Status: Feedback
+Status: Closed
  [2011-11-22 13:22 UTC] mapi at pdepend dot org
  [2011-11-22 13:53 UTC] felipe@php.net
 
-Status: Closed
+Status: Bogus
  [2011-11-22 13:53 UTC] felipe@php.net
 | |||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 10:00:02 2025 UTC | 
Description: ------------ Maybe it's not a bug, but a behavior change. With all PHP versions prior to 5.4.0 the output of var_dump() for a simple string was enclosed by double quotes. With 5.4.0 this has changed and the string is now enclosed by single quotes, except the string already contains a single quote Test script: --------------- php -r 'var_dump("Manuel");' Expected result: ---------------- string(6) "Manuel" Actual result: -------------- string(6) 'Manuel'