wp_kses_stripslashes

Definition:
function wp_kses_stripslashes($string) {}

Strips slashes from in front of quotes.
This function changes the character sequence \" to just ". It leaves all other slashes alone. It’s really weird, but the quoting from preg_replace(//e) seems to require this.

Parameters

  • string $string: String to strip slashes

Return values

returns:Fixed string with quoted slashes

Source code

function wp_kses_stripslashes($string) {

	return preg_replace('%\\\\"%', '"', $string);

}

3845

No comments yet... Be the first to leave a reply!

Leave a comment