A simple question, I have an array:
array(
'aaa' => 1,
'bbbbbbbb' => 2,
'ccccc' => 3,
'dd' => 4
);
and I want the format code:
array(
'aaa' => 1,
'bbbbbbbb' => 2,
'ccccc' => 3,
'dd' => 4
);
Is there a formatting method for this because I don't see anything like it?
PS. Sorry for my English.
source
share