Converting array values and keys to a string
It is possible to convert an array’s values to a string by using implode function. Implode function takes two arguments. First one is a character that will separate values in a string, second one is array.
It is possible to create a string out of array keys by using arrays_keys function.
Comments
Post a Comment