Dutch PHP Conference 2025 - Call For Papers

variant_sub

(PHP 5, PHP 7, PHP 8)

variant_subSubtracts the value of the right variant from the left variant value

Опис

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

Subtracts right from left.

Параметри

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.

Значення, що повертаються

Variant Subtraction Rules
If Then
Both expressions are of the string type Subtraction
One expression is a string type and the other a character Subtraction
One expression is numeric and the other is a string Subtraction.
Both expressions are numeric Subtraction
Either expression is NULL NULL is returned
Both expressions are empty Empty string is returned

Помилки/виключення

Throws a com_exception on failure.

Прогляньте також

  • variant_add() - "Adds" two variant values together and returns the result

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top