Things You Probably Didn’t Know About PHP – Part 2
Written on January 19, 2010 – 2:30 am | by admin |Here a new post about cool things in PHP that I found in my spare time. Here’s the list: 1. Use === and !== when you want to compare only variables with identical format, ex: $a = 1; $b = ’1′; $c = 1; $a == $b // true $a === $b // false $a [...]

