
Solutions for Woocommerce eCommerce Plugin
Woocommerce add-to-cart addon adds durations or increments to products and calculates the amount which is added onto said product.
Example | Name | Result |
---|---|---|
$a == $b | Equal | true if $a is equal to $b . |
$a === $b | Identical | true if $a is equal to $b , and they are of the same variable type. |
$a != $b | Not equal | true if $a is not equal to $b . |
$a <> $b | Not equal | true if $a is not equal to $b . |
$a !== $b | Not identical | true if $a is not equal to $b , or if they are not of the same variable type. |
$a < $b | Less than | true if $a is less than $b . |
$a > $b | Greater than | true if $a is greater than $b . |
$a <= $b | Less than or equal to | true if $a is less than or equal to $b . |
$a >= $b | Greater than or equal to | true if $a is greater than or equal to $b . |