How to get unique values from this array and save them in the table $tab = array('one','two','tree');
?
array(2) {
[0]=>
array(1) {
["tagi"]=>
string(183) "photoshop, grafika, animacje,photoshop, grafika, animacje,photoshop, grafika, animacje,photoshop, grafika, animacje,photoshop, grafika, animacje,photoshop, grafika, animacje, tutorial"
}
[1]=>
array(1) {
["tagi"]=>
string(38) "photoshop, grafika, animacje, poradnik"
}
}
3
Answers
How to remove empty lines ?
if $mainArray = array(2)… , try this code:
Try
array_unique
. This function takes one array as argument and generates a new array with distinct values of the argument array.