<?php $liste = [[1,2,3],5,[['x','y','z'],true]]; array_walk_recursive($liste, function($v) use (&$flat){ $flat[] = $v; }); var_export($flat);
You have javascript disabled. You will not be able to edit any code.