Theres a multidimensional array, where are some keys like
$Array['nested']['product']['item']['name'] = 'It Works';
//I know the string saved in DB, thats like
$path = 'nested.product.item.name';
$split = explode('.',$path);
Is it possible to access the Array value based on the string path?
How to combine value from $split so I get nested $Keys
so
echo $Array[$Keys] will return 'It works';