From 64332267492f7a87f6a77edb30e93606d3cd171f Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 20 Sep 2003 12:51:20 +0000 Subject: [PATCH] Explicit cwqasting is now necessary --- ext/spl/tests/array.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/tests/array.phpt b/ext/spl/tests/array.phpt index 448fc443fe..1474564dc0 100755 --- a/ext/spl/tests/array.phpt +++ b/ext/spl/tests/array.phpt @@ -14,7 +14,7 @@ $ar[2] = 2; var_dump($ar[2]); var_dump($ar["3"] = 3); -var_dump(array_merge($ar, array(4=>4, 5=>5))); +var_dump(array_merge((array)$ar, array(4=>4, 5=>5))); var_dump($ar["a"] = "a"); -- 2.50.1