Ben Phelps Posted July 3, 2007 Share Posted July 3, 2007 I have seen this before, but I can think of what it is called. a:7:{i:0;a:2:{s:6:"visits";a:5:{i:0;a:1:{i:0;a:2:{s:5:"total";i:148;s:6:"unique";i:46;}} thats what it looks like, and i know its a way of storing data in php. What is that method called? Link to comment https://forums.phpfreaks.com/topic/58165-solved-storage-method/ Share on other sites More sharing options...
skali Posted July 3, 2007 Share Posted July 3, 2007 Seems like this is an object serialized into string through serialize() function, you can use: $var = unserialize('your serialized string') to get the actual object. Link to comment https://forums.phpfreaks.com/topic/58165-solved-storage-method/#findComment-288488 Share on other sites More sharing options...
Ben Phelps Posted July 3, 2007 Author Share Posted July 3, 2007 Thanks, I knew it was something. Link to comment https://forums.phpfreaks.com/topic/58165-solved-storage-method/#findComment-288491 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.