php8.5
Home/ Manual/ com / functions/ variant_get_type

variant_get_type

PHP function Edit on GitHub ✎

(PHP 5, PHP 7, PHP 8)

Returns the type of a variant object

Description

variant_get_type(variant $variant): int

Returns the type of a variant object.

Parameters

variant

The variant object.

Return Values

This function returns an integer value that indicates the type of variant, which can be an instance of class.com, class.dotnet or class.variant classes. The return value can be compared to one of the VT_* constants.

The return value for COM and DOTNET objects will usually be VT_DISPATCH; the only reason this function works for those classes is because COM and DOTNET are descendants of VARIANT.

See Also

Source: reference/com/functions/variant-get-type.xml · from the official PHP manual (php/doc-en)