php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #63623
Patch fix_for_array_output revision 2012-11-27 12:23 UTC by reayn3 at gmail dot com

Patch fix_for_array_output for Arrays related Bug #63623

Patch version 2012-11-27 12:23 UTC

Return to Bug #63623 | Download this patch
Patch Revisions:

Developer: reayn3@gmail.com

diff --git test.php test.php
index 6ecec5a..8b37039 100755
--- test.php
+++ test.php
@@ -4,7 +4,7 @@ Class Test {
 	private $a = array("c","d") ;
 
 	public function testT() {
-		return "$this->a[1]" ;
+		return $this->a[1] ;
 	}
 }
 
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 19:01:29 2024 UTC