wordpress / latest / functions / add_magic_quotes.html

add_magic_quotes( array $array ): array

Walks the array while sanitizing the contents.

Parameters

$array array Required
Array to walk while sanitizing contents.

Return

array Sanitized $array.

Source

File: wp-includes/functions.php. View all references

function add_magic_quotes( $array ) {
	foreach ( (array) $array as $k => $v ) {
		if ( is_array( $v ) ) {
			$array[ $k ] = add_magic_quotes( $v );
		} elseif ( is_string( $v ) ) {
			$array[ $k ] = addslashes( $v );
		} else {
			continue;
		}
	}

	return $array;
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
5.5.0 Non-string values are left untouched.
0.71 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/add_magic_quotes