This is my array (input):
$value = array("jan01" => "01", "feb02" => "02", "mar03" => "03", "apr04" => "04");
I am using this code to get the array keys:
implode(" ", array_map("ucwords", array_keys($value)));
Now my problem is I want to get all keys by triming the last two characters of each key.
How can I change/modify my code, so that it trim's the last two characters of each key?
EDIT:
I also want to skip first 3 keys, means I don't want the first 3 keys to be trimmed.