Hi there,
Your library is a very good idea to implement the advanced searching.
But it will not work if the key word includes & characters (something like this name="abc & 123"), because you are splitting the url params by this function array_filter(explode('&', $queryUri)).
So it will be error in this case.
Could you think how to fix it?
I'm thinking the solution too
Hi there, Your library is a very good idea to implement the advanced searching. But it will not work if the key word includes
&
characters (something like thisname="abc & 123"
), because you are splitting the url params by this functionarray_filter(explode('&', $queryUri))
. So it will be error in this case. Could you think how to fix it? I'm thinking the solution too