|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-08-05 04:11 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 28 04:00:01 2025 UTC |
Description: ------------ function not always return data Reproduce code: --------------- class a { function a1() { $a = 5; $b = 10; $c = $a + $b; echo "$c\n"; return array('a' => $a, 'b' => $b, 'c' => $c); } } class b { function b1() { $a = a::a1(); echo $a['c']; } } b::b1(); Expected result: ---------------- 15 15 Actual result: -------------- 15