Arithmetic Operations in Arrays with PHP
- by Ajith
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