8
votes
9answers
456 views
Is Code Complete suitable for Web Developers?
It seems everywhere I go, I am bombarded with mentions of Steve McConnell's Code Complete book, my question is this book relevant for Web Developers (PHP Developers) and not just software engineers …
1
vote
2answers
136 views
Coding style: function and procedures coding standard
Ch 7.6 of Code Complete 2 is confusing me, I've attached some sample code (in php) mind telling me which style is the best? or suggest something better? thanks
Style 1
public function …
1
vote
3answers
245 views
What is a good naming convention for a routine that sets a global variable in the same class
Code Complete (Chapter 7, Section 3) says that a good function should be named for the value it returns and a good procedure name in a class should be named for what it does.
When I write …
