From: Marcus Boerger Date: Sat, 20 Sep 2003 12:51:20 +0000 (+0000) Subject: Explicit cwqasting is now necessary X-Git-Tag: RELEASE_0_7~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64332267492f7a87f6a77edb30e93606d3cd171f;p=php Explicit cwqasting is now necessary --- 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");