I have two arrays
$data1 = array()
$data1 = array( '10','22','30')
and also another array carries
$data2 = array()
$data2 = array( '2','11','3');
I need to divide these two arrays(ie,$data1/$data2) and store value to $data3[].
I need to get it as follows
$data3[] = array('5','2','10')
If someone knows of an easy way to do this would be of great help.
Thanks
You can do that with a simple foreach statement:
Alternatively you can use array_map:
And as of PHP 5.3 you can even use a lambda function to compress that to one row: