I have a query string, for example:
n1 = v1 & n2 = v2 & n3 = v3
etc.
I just want the php function to accept the query string and name (key) and remove a pair of name values ββfrom the query string.
Each example I found uses regular expressions and assumes that the value will exist and that it will not be empty, but in my case (and perhaps, in the general case, I would like to know) this would also be a valid query:
n1 = v1 & n2 = & n3
I do not know in advance how many keys will be.
I am convinced that regular expressions are monsters that eat time. In the end, all matter in the universe will be in regular expression.
zod
source share