wpdb::__isset( string $name ): bool

In this article

Makes private properties check-able for backward compatibility.

Parameters

$namestringrequired
The private member to check.

Return

bool If the member is set or not.

Source

public function __isset( $name ) {
	return isset( $this->$name );
}

Changelog

VersionDescription
3.5.0Introduced.

User Contributed Notes

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