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.
A fictional example:
$task = array('who'=>'John', 'what'=>'wash the dishes', 'priority'=>10);
$calendar[$year][$month][$day][$task_id] = $task;
In this case I named it "calendar" because the whole structure has a simple meaning as a whole, but in most cases there is no such direct connection to a single word or even a real-life concept. Also, I used date parts here (year, month, day) for exemplification, but normally my keys are integer database record ids.
So I would like a system of naming to describe this relation:
"year X month X day -> list of tasks"
more generally:
"key1 x key2 x key3 x ... x key n -> items"
A possible naming convention, using the word by and underscores as separators between keys:
$tasks_by_year_month_day = array(...); // items_by_key1_key2_key3
so that, keeping the same convention, I would write:
$tasks_by_month_day = $tasks_by_year_month_day['2010'];
or
$november2010Tasks_by_day = $tasks_by_year_month_day['2010']['nov'];
Is there a standard or cleaner way of naming this kind of arrays?
Thank you.