On Thu, 3 Jan 2013, Jim Giner wrote:
The only time I use a single '=' symbol in an if statement is when I forget
to use two of them! Must be my old school, old languages habits but this
style of programming reminds me of the days when we used to pack empty spaces
in assembler code with constants or byte-size vars in order to save memory
back when memory was the most precious resource one had.
The only time I'd consider doing it is if the next thing I was going to do
would be check to see if the assignment itself worked. for example:
if (file_handle = fopen("foo", "r")) {
...
}
Geoff.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php