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

variant_add

PHP function Edit on GitHub ✎

(PHP 5, PHP 7, PHP 8)

"Adds" two variant values together and returns the result

Description

variant_add(mixed $left, mixed $right): variant

Adds left to right using the following rules (taken from the MSDN library), which correspond to those of Visual Basic:

IfThen
Both expressions are of the string typeConcatenation
One expression is a string type and the other a characterAddition
One expression is numeric and the other is a stringAddition
Both expressions are numericAddition
Either expression is NULLNULL is returned
Both expressions are emptyInteger subtype is returned

Parameters

left

The left operand.

right

The right operand.

Variant-arith

Return Values

Returns the result.

Errors/Exceptions

Throws a com_exception on failure.

See Also

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