wpdb::escape_by_ref( string $string )

Escapes content by reference for insertion into the database, for security


Description Description


Parameters Parameters

$string

(string) (Required) to escape


Top ↑

Source Source

File: wp-includes/wp-db.php

	public function escape_by_ref( &$string ) {
		if ( ! is_float( $string ) ) {
			$string = $this->_real_escape( $string );
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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