Thanks, Tattoo.
For lulz, I will share with you the following idiotic hack that I used, expecting a reasonable answer:
$badArray = array_diff($allData, $myData);
$string = implode(",",$badArray);
$dump = explode(",",$string);
$goodArray = $dump;
worked. It made me feel dirty, but it worked.
source
share