foreach ($medias as $key => &$media) {
if () {
....
$data = array(
'type' => 1,
'preview' => $img,
'content' => $link
);
} elseif () {
....
$data = array(
'type' => 1,
'preview' => $img,
'content' => $link
);
} elseif () {
....
$data = array(
'type' => 1,
'preview' => $img,
'content' => $link
);
}
}
echo $json = json_encode(
array(
'data' => array(
'status' => 200,
'name' => "user",
'dump' => array($data)
)
)
);
$result = [];
foreach ($medias as $key => &$media) {
if () {
//....
$result[] = array(
'type' => 1,
'preview' => $img,
'content' => $link
);
} elseif () {
//....
$result[] = array(
'type' => 1,
'preview' => $img,
'content' => $link
);
} elseif () {
//....
$result[] = array(
'type' => 1,
'preview' => $img,
'content' => $link
);
}
}
echo json_encode($result);