variant classIntroductionThe VARIANT is COM's equivalent of the PHP zval; it is a structure that can contain a value with a range of different possible types. The variant class provided by the COM extension allows you to have more control over the way that PHP passes values to and from COM. Class synopsis
variant
/* Methods */
public __construct(mixed
$value = null , int $type = VT_EMPTY , int $codepage = CP_ACP )variant examples
Example #1 variant example
See also variant_get_type.
|