I have a table and in the table I have a column that shows details of uploaded files.
Like pdf, ppt, pdf.
With help of this link I convert my string into array.
So if I have ppt pdf ppt doc image
it is converted into
Array ( [ppt] => 2 [pdf] => 1 [doc] => 1 [image] => 1 )
How can I convert this array into the following string?
2 ppt + 1 pdf + 1 doc + 1 image