Computer Science, asked by bekeshsingh256, 11 months ago

How to convert an array to a string in php?

Answers

Answered by ab7abraham
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