wpdb::__set( string $name, mixed $value )

Makes private properties settable for backward compatibility.


Parameters

$name string Required
The private member to set.
$value mixed Required
The value to set.

Top ↑

Source

File: wp-includes/class-wpdb.php. View all references

public function __set( $name, $value ) {
	$protected_members = array(
		'col_meta',
		'table_charset',
		'check_current_query',
		'allow_unsafe_unquoted_parameters',
	);
	if ( in_array( $name, $protected_members, true ) ) {
		return;
	}
	$this->$name = $value;
}

Top ↑

Changelog

Changelog
Version Description
3.5.0 Introduced.

Top ↑

User Contributed Notes

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