(PHP 5, PHP 7, PHP 8)
variant_add — "Adds" two variant values together and returns the result
Adds left
to right
using
the following rules (taken from the MSDN library), which correspond to
those of Visual Basic:
If | Then |
---|---|
Both expressions are of the string type | Concatenation |
One expression is a string type and the other a character | Addition |
One expression is numeric and the other is a string | Addition |
Both expressions are numeric | Addition |
Either expression is NULL | NULL is returned |
Both expressions are empty | Integer subtype is returned |
left
The left operand.
right
The right operand.
Зауваження:
Як і у всіх інших варіантних арифметичних функцій, параметри цієї функції можуть мати PHP-тип (ціле число, рядок, десятковий дріб, логічний або
null
) або бути примірником класу COM, VARIANT чи DOTNET. Типи, вбудовані в PHP, будуть перетворені у "варіанти" за правилами, описаними в конструкторі класу variant. В об'єктів COM і DOTNET значеннями "варіантів" будуть початкові значення властивостей цих об'єктів.Варіантні арифметичні функції є надбудовами однойменних функцій бібліотеки COM. Докладніша інформація про ці функції є в документації до бібліотеки MSDN. Функції в PHP називаються дещо інакше, ніж в бібліотеці MDSN. Наприклад, variant_add() в PHP відповідає
VarAdd()
в MSDN.
Returns the result.
Throws a com_exception on failure.