What is the behavior of the `$_REQUEST` superglobal when `request_order` is set in php.ini?

PHP Intermediate Hard

PHP Intermediate — Hard

What is the behavior of the `$_REQUEST` superglobal when `request_order` is set in php.ini?

Key points

  • $_REQUEST is a merged array of GET, POST, and COOKIE.
  • request_order controls the merge sequence.
  • Overwriting behavior depends on the order of variables.

Ready to go further?

Related questions