I need to write multiple arrays into one variable, f.e:
$test= Yii::$app->request->get('Test', []);
$test1 = Yii::$app->request->get('Test1', []);
$test2 = Yii::$app->request->get('Test2', []);
If I have these 3 statements, I want to join in together by using just only 1 variable. Is it possible to do so?
Thanks for any help