I have an array of string values, each one consisting of 5 fields with a <space> delimiter. I need to read each element of the array and assign the 5 values to its own variable.
In the Progress language, there is an entry(). It would like something like this:
variable-name = entry(1,vStringName)
variablename2 = entry(2,vStringName)
...
Is there something similar in PHP? I looked through the function list on w3schools but didn't see anything that did what I wanted.
....