7
votes
7answers
231 views
PHP best practices: repass variables from config file when calling functions or use global?
I have a program that I use on several sites. It uses require('config.php'); to set any site dependant variables like mysql connect info, paths, etc.
Let's say that I use one of these site-dependant …
3
votes
8answers
601 views
Check if variable null before assign to null?
Is variable assignment expensive compared to a null check? For example, is it worth checking that foo is not null before assigning it null?
if (foo != null) {
foo = null;
}
Or is this worrying …
2
votes
9answers
246 views
General programming - else or else if for clarity
In a situation where a variable could have two different values, and you do something if its one, something differnent if its the other, would you just do:
if(myVariable == FIRST_POSSIBLE_VALUE) { …
0
votes
1answer
100 views
VB.NET Delegate code clarification
I am trying to figure out what this piece of code does. It errors often (not in a system damaging way) but enough that it bothers me. It would be great if I could get some more information on what …
0
votes
1answer
193 views
iPhone Dev - Where to put lazy loading code
I already had a question like this, but I already deleted it anyway.
I have very simple app that has a root view controller and it switches between two other view controller views. So in my root view …
