Answers for "get non unique eleemnts from 2 arrays php"

PHP
0

get unique array from multidimentional array by value in php

$uniquePids = array_unique(array_map(function ($i) { return $i['pid']; }, $holder));
Posted by: Guest on January-30-2021

Browse Popular Code Answers by Language