Simple question, I have array:
array(
'aaa' => 1,
'bbbbbbbb' => 2,
'ccccc' => 3,
'dd' => 4
);
and I want format code to:
array(
'aaa' => 1,
'bbbbbbbb' => 2,
'ccccc' => 3,
'dd' => 4
);
Is there a Formatting option to do this, because I don't see anything like this?
PS. Sorry for my English.
