wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



stripslashes_deep › WordPress Function

Da2.0.0
Deprecaton/a
stripslashes_deep ( $value )
Parametri:
  • (mixed) $value The value to be stripped.
    Richiesto:
Ritorna:
  • (mixed) Stripped value.
Definito a:
Codex:

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



Sorgenti

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