Jump to content

Messing with a crazy string...


iPixel

Recommended Posts

So i have an array with 1 item in it... this item is a sting that looks like so

 

a:6:{i:0;a:4:{i:1;s:4:"Home";i:2;s:1:"/";i:3;s:1:"1";i:4;s:2:"fy";}i:1;a:4:{i:0;a:4:{i:1;s:4:"About";i:2;s:1:"/about";i:3;s:1:"1";i:4;s:2:"";}i:2;

 

I need to somehow pull out all things that are within double quotation marks. Note: Some quotes are empty, but i need to know that.

 

So the above should pull out

Home      /              fy

About    /about     

 

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/245450-messing-with-a-crazy-string/
Share on other sites

Well, that string is an array that has been serialized with serialize() however it has several errors in it.  If it was a correctly serialized array then you could use unserialize() and you would have a nice array to use.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.