wpdb::_escape( string|array $data )

Escape data. Works on arrays.


Description Description


Parameters Parameters

$data

(string|array) (Required)


Top ↑

Return Return

(string|array) escaped


Top ↑

Source Source

File: wp-includes/wp-db.php

	public function _escape( $data ) {
		if ( is_array( $data ) ) {
			foreach ( $data as $k => $v ) {
				if ( is_array( $v ) ) {
					$data[ $k ] = $this->_escape( $v );
				} else {
					$data[ $k ] = $this->_real_escape( $v );
				}
			}
		} else {
			$data = $this->_real_escape( $data );
		}

		return $data;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.