Rita_Ruah Posted October 31, 2013 Share Posted October 31, 2013 Hello, I have a problem with my logic and would like someone to enlighten me. I have two arrays: $array1 contains 1, 2 and 3. $array2 contains 2. I want to know the best way to dinamically check the first array, checks their values, compare to $array2, and insert the missing values in $array2. In my logic: - $array1 is initialized with values 1, 2 and 3; - $array2 is initialized with value 2; - Compare the two arrays; - Insert the missing values (1, 3) into $array2. How can I do this? Can you provide me some code? Thanks Link to comment https://forums.phpfreaks.com/topic/283481-logic-help-needed/ Share on other sites More sharing options...
Ch0cu3r Posted October 31, 2013 Share Posted October 31, 2013 Look at using array_diff and array_merge functions. Link to comment https://forums.phpfreaks.com/topic/283481-logic-help-needed/#findComment-1456421 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.