Hi, I am using Snoopy (link) to grab some data. However, it returns the data in the form of an array of individual characters (i.e. $array = array("a", "b", "c"). Now this is rather unwieldy for the purpose of getting certain data out of the array.
I tried to implode the array ($newstr = implode("", $class->array) but the variable $newstr is empty when I do this.
I really need to be able to convert this array into a string so I can extract the bits that I need out of it. Can anyone help me with this?