I have a dynamic string that looks like this...
/tester?bc=7&tester=orange
Using PHP I am trying to return the single value after bc=
I have looked at strrchr but that doesn't seem to let me specify just returning one character, how should I be doing this?
If the value is not from the request, you might want to use something like this:
The
$query
would contain this:Please mind that
max_input_vars
directive affectsparse_str
, so if your string would be extremely large, it might cut some parts.Best regards, Alexander