|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch fix_for_array_output for Arrays related Bug #63623Patch version 2012-11-27 12:23 UTC Return to Bug #63623 | Download this patchPatch 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] ;
}
}
|
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 06:00:01 2025 UTC |