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



stripslashes_deep › WordPress Function

Seit2.0.0
Veraltetn/v
stripslashes_deep ( $value )
Parameter:
  • (mixed) $value The value to be stripped.
    Erforderlich: Ja
Gibt zurück:
  • (mixed) Stripped value.
Definiert in:
Codex:

Navigates through an array, object, or scalar, and removes slashes from the values.



Quellcode

function stripslashes_deep( $value ) {
	return map_deep( $value, 'stripslashes_from_strings_only' );
}