What will be the fastest and best way to convert the following PHP associate array to a string without json.
array
 Array ( [0] => A [1] => S [2] => G) 
to a string, exactly like
String =  "A, S, G";
Most of the solutions available are using JSON, that I don't want to use. plus I want to know the "Fastest" and "Best" way.