Here i am having two arrays
News
$news= Array
(
"100" => Array
(
"activationDate" => "2018-11-28 16:19:22"
),
"200" => Array
(
"activationDate" => "2018-11-28 16:21:06"
),
"300" => Array
(
"activationDate" => "2018-11-28 16:23:18"
)
);
channel
$channel= Array
(
"0" => Array
(
"id" => 200,
"status" => "available"
),
"1" => Array
(
"id" => 100,
"status" => "No"
)
);
My requirement is, channel
id is equal to news
index means i want to take activationDate
and push to channel,How we can achieve this, kindly help me out on this,