Tagged Questions
3
votes
2answers
247 views
Variable naming for multi dimensional arrays (PHP)
I'm having a hard time trying to figure out a system of naming multi-dimensional PHP arrays, so that by looking at the variable name, you get a hint about the structure of the multi-dimensional array.
...
0
votes
6answers
1k views
Should I capitalize constructor names for my classes?
I use camel case which has the first letter of all variable names, functions, etc lowercased. But the class names are capitalized. Should I use:
class Foo
{
function foo()
{
}
}
or :
...