Equality
== true if equal
!= not equal
=== true if equal & same type
!== not identical
Note that some functions can return 0 or false (false is typically used to indicate failure) depending on the context. For these functions, you will need to use === to determine whether 0 or false was returned. Some problematic functions: strpos, strrpos, strstr, stristr, strrchr
COMMENTS http://php.weblogs.com/php_jscript_vbscript_1
|