php ini arg_separator.input

The ampersand (&) is the standard character used to separate input variables passed in via the POST or GET methods. Although unlikely, should you need to override this convention within your PHP applications, you can do so by using the arg_separator.input directive.

;arg_separator.input = ";&"

PHP's default setting is "&". NOTE: Every character in this directive is considered as separator!





Content