add_magic_quotes( array $array )

Walks the array while sanitizing the contents.


Description


Parameters

$array

(array) (Required) Array to walk while sanitizing contents.


Top ↑

Return

(array) Sanitized $array.


Top ↑

Source

File: wp-includes/functions.php

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

Top ↑

Changelog

Version Description
0.71 Introduced.