Very stupid question, but still. Is it possible to combine multiple arrays under one variable?
For example:$a = [1, 2, 3]; $b = [4, 5, 6];
So that eventually came out:$c = [1, 2, 3], [4, 5, 6];
Source: https://ru.stackoverflow.com/questions/807812/
All Articles
$c = [$a, $b]? - xEdelweiss$c = [1, 2, 3], [4, 5, 6];It will not work, but it will come out as in the comment above .. - entithat