- array_push: documentation ( source)
- var_export: documentation ( source)
- array_fill: documentation ( source)
<?php
$types = [
"text" => 2,
"image" => 2,
"audio" => 2,
];
$result = [];
foreach ($types as $type => $count) {
array_push($result, ...array_fill(0, $count, $type));
}
var_export($result);