Necuima 18 Posted September 24, 2017 Report Share Posted September 24, 2017 Hi Larry, I recently came across an issue whereby array_merge would not accept the second argument, an array with a generated PHP variable name, without typecasting it. The array in question tested as an array with var_dump so I did not understand why the array_merge was failing saying that the second argument was not an array. But typecasting it as an array solved the issue. $destination_array = array_merge($destination_array, array(${"generated_array_name" . $suffix})); // works Posted in case it is of interest. PHP version 5.5.3 Cheers from Oz. Quote Link to post Share on other sites
Larry 428 Posted October 3, 2017 Report Share Posted October 3, 2017 Interesting! Thanks for sharing that! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.