I have 3 variables where I want to add them to a number in different ways depending on the variables value. lets say I have variables $a $b and $c
I want to say add variables $a and $b only to my original number as long as $a is not equal to 2, if $a is equal to 2 I want to only add $a and $c to my number.
Can someone show me how to write that function in php?