Hi,
I am confused which one to use implode or serialize.
What is difference between them?
which one is better?
difference between implode and serialize
Moderator: General Moderators
-
sathish.hc
- Forum Newbie
- Posts: 15
- Joined: Tue May 23, 2006 2:55 am
-
AshrakTheWhite
- Forum Commoner
- Posts: 69
- Joined: Thu Feb 02, 2006 6:47 am
serialize() returns a string containing a byte-stream representation of value that can be stored anywhere.
Returns a string containing a string representation of all the array elements in the same order, with the glue string between each element.
RTM
Returns a string containing a string representation of all the array elements in the same order, with the glue string between each element.
Code: Select all
serialize()
implode()RTM