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? Quote Link to comment 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. Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.