$a = array(0=>'',1=>arrray(0=>1,1=>2),2=>'',3=>arrray(0=> ;1,1=>2));
How can I turn this two-dimensional array into the following one-dimensional array:
$a = array(
0= >'',
1=>'1,2',
2=>'',
3=>'1,2',
};
亮2021-09-30 21:17:08
It has been verified that it works. I have the same idea, but I am stuck. Thank you for the guidance.
autoload2021-09-30 14:26:27
First of all, there is a problem with your array. What is arrray? Although I don’t know why I wrote it like this, it’s okay if I just force it out