Remove Debugbreak() calls before committing files to SVN
Since I work mostly on Windows, I develop all my PHP projects in NuSphere PhpEd IDE. And I’m using TortoiseSVN…
programming and psychology
Since I work mostly on Windows, I develop all my PHP projects in NuSphere PhpEd IDE. And I’m using TortoiseSVN…
One more caveat in using switch-statement is when you tend to use it like if-statement. Here is an example: Now.…
Despite the fact that PHP Manual suggests to use switch statement to match single variable I would argue that switch…
Quote from official PHP documentation: count() – Count all elements in an array, or something in an object “something” —…
From time to time I bounce into a code like: if (‘vodka’ == drink.type && 40 == drink.spiritAmount) then {…}…