I have a text string that looks like this
var1=red&var2=green&var3=blue&var4=magenta
How can manipulate this string isolate the value of var2 which in this case is green
|
|
|
I'd start with parse_url What you have looks close enough to an URL param string that you might as well use the built in methods for handling URLs. |
|||
|
|
|
Use the php function parse_str() to convert it to an array. |
|||
|
|
|
You can use
|
|||
|
|