Link.FYI
Pastebin
Create New
My Pastes
Code (PHP) pasted on 2018-11-18, 21:15
Raw Source
<?php
$input
=
[
[
"blue"
,
"red"
,
"green"
,
"yellow"
]
,
[
"pink"
,
"blue"
,
"red"
]
,
[
"black"
,
"pink"
,
"yellow"
]
]
;
$uniques
=
[
]
;
foreach
(
$input
as
$array
)
{
$uniques
=
array_merge
(
$uniques
,
$array
)
;
}
$uniques
=
array_unique
(
$uniques
)
;
var_dump
(
$uniques
)
;