I think you're referring to the 'equality' tester which is 2 equals signs like this:
==
This is used in the following manner:
if ( $MyVariable == true ) {
Do Something
}
Now, what this means is that the code within the {} signs will ONLY run if $MyVariable happens to have the value TRUE (1) at that particular time.
The area within the brackets ( ) is the 'test' to see whether we will run this code or not.
What the pair of = signs represent is 'Equal to'. So the line reads:
If MyVariable is equal to 'True', do this.
I've not come across three equals signs being used.