Skip to content

Instantly share code, notes, and snippets.

@incredibleasif
Created August 11, 2022 17:53
Show Gist options
  • Save incredibleasif/c226efcc133ff59cf4dd4845d8a2b814 to your computer and use it in GitHub Desktop.
Save incredibleasif/c226efcc133ff59cf4dd4845d8a2b814 to your computer and use it in GitHub Desktop.
Array Function - PHP
<?php
/*
* Return differrnce from two multidimensional associative arrays
* Refernce : https://stackoverflow.com/a/61239457/6614080
*/
if(!function_exists("array_diff_multi_assoc")){
function array_diff_multi_assoc($arr1,$arr2){
$diff = array_diff(array_map('serialize', $arr1), array_map('serialize', $arr2));
return array_map('unserialize', $diff);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment