PHP is_object() Function

PHP Variable Handling Reference : Check whether a variable is an object or not

Definition and Usage

The is_object() function checks whether a variable is an object.

This function returns true (1) if the variable is an object, otherwise it returns false/nothing.

Syntax

is_object(variable);

Parameter Values

Parameter Description
variable Required. Specifies the variable to check

Technical Details

Return Value: TRUE if variable is an object, FALSE otherwise
Return Type: Boolean
PHP Version: 4.0+
PHP Changelog: PHP 7.2: This function now returns true for unserialized objects without a class definition. Earlier false was returned

❮ PHP Variable Handling Reference