0
noob posted
how to use array_flip function with multidimensional array in php
trying to flip the multidimensional array in php
$a=array("a",array("b","c","d"),"e","f");
array_flip($a);
and i got warning that can only flip string and integer
Warning: array_flip() [function.array-flip]: Can only flip STRING and INTEGER values!
so basically array_flip cant work with multidimensional array .
so is there any other function will can work with flipping multidimensional array in php or any custom code which can help .