can someone explain this one to me? a link to something in the php manual even?? i can't find anything:
if ($_SERVER['SERVER_PORT'] <> 443) {
doSomething();
}
|
|
can someone explain this one to me? a link to something in the php manual even?? i can't find anything:
|
|||
|
|
|
|
Although PHP is mostly based on C-style syntax, this is one of the weird things that comes from the BASIC-style syntax world. Needless to say, I'd just use != and be consistent with it, as <> is really never used. |
||
|
|
|
|
Note that |
||||
|
|
|
good show! thanks to all that answered. :) loving stack overflow. :P |
||||
|
|
|
|
||
|
|
|
|
It's another way of saying "not equal to" (the |
||
|
|
|
|
It's equivelent to != |
||
|
|
|
|
|
||
|