Tagged Questions

6
votes
9answers
161 views

PHP - Worth including the data type in the variable name?

I'm trying to write my code as maintainable and easy to understand as possible, and I thought of including the type of data a variable holds in its name. e.g: $intCurrentLine = 1; instead of ...
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. ...
1
vote
6answers
39 views

correct name for a variable users_ids vs user_ids

I ask you, native English speakers: What is the correct name for a variable (from grammar point of view): A) users_ids vs B) user_ids I'm pretty sure C) users_id is wrong. The variable is an array ...
1
vote
3answers
174 views

php object attribute with dot in name

I have mysql table with collumns like 'operation.date', 'operation.name' and etc. After fetching that table data as object with $mysqli->fetch_object() i get this (print_r of row): stdClass Object ...
1
vote
3answers
97 views

Can you get a variable name as a string in PHP? (And should you?)

Say you have several large arrays of variables (which generally are strings), and you want to change how they are displayed on certain pages – for example by concatenating each of them with $prefix ...
0
votes
2answers
213 views

Why are some variables in PHP written in uppercase?

Why does some code in PHP have to be written in uppercase? For instance: if(isSet($_GET['lang'])) $lang = $_GET['lang']; $_SESSION['lang'] = $lang; Do they work if I write them in lowercase?
0
votes
2answers
248 views

How to receive a batch of checkbox data in PHP?

The key code is: while ($row= mysql_fetch_array($result, MYSQL_ASSOC)) { $id=$row[id]; $html=<<<html <tr><td> <input style="float:left" type="checkbox" ...
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 : ...