- print_r: documentation ( source)
- ucfirst: documentation ( source)
<?php
$arr = [
"story" => 10,
"image" => 20,
"video" => 30,
"audio" => 40
];
foreach($arr as $key => $value) {
$arr[$key] = ucfirst($key)." (".$value.")";
}
print_r($arr);