How to convert an array to a string in php?
Answers
Answered by
0
solution:
Convert array into string in PHP :
Use it like this: var str = implode(",", $array) . serialize() and unserialize() convert between php objects and a string representation. implode is function , which used in php for converting the array into string.
Similar questions