wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_reset_vars › WordPress Function

Seit2.0.0
Veraltetn/v
wp_reset_vars ( $vars )
Parameter:
  • (array) $vars An array of globals to reset.
    Erforderlich: Ja
Definiert in:
Codex:

Resets global variables based on $_GET and $_POST.

This function resets global variables based on the names passed in the $vars array to the value of $_POST[$var] or $_GET[$var] or '' if neither is defined.


Quellcode

function wp_reset_vars( $vars ) {
	foreach ( $vars as $var ) {
		if ( empty( $_POST[ $var ] ) ) {
			if ( empty( $_GET[ $var ] ) ) {
				$GLOBALS[ $var ] = '';
			} else {
				$GLOBALS[ $var ] = $_GET[ $var ];
			}
		} else {
			$GLOBALS[ $var ] = $_POST[ $var ];
		}
	}
}