__isset() public method
Checks if a property is set, i.e. defined and not null.
Do not call this method directly as it is a PHP magic method that will be implicitly called when executing isset($object->property)
.
Note that if the property is not defined, false will be returned.
public boolean __isset ( $name ) | ||
---|---|---|
$name | string |
The property name or the event name |
return | boolean |
Whether the named property is set (not null). |
Please login to continue.