Accepter::nullExemptionArray[$section][$elementName]
This makes absolutely no sense as to why it's a parse error. Accepter is a class that I am calling in a static fashion to call a "static" array property $nullExemptionArray.
I do not wish to instantiate an Accepter class object instance since I not only don't need to in this case, but the previous call that produces a parse error will be in a class method that will be instantiated multiple times within a loop, and having to instantiate a class object in memory for just ONE STATIC PROPERTY is absolutely inefficient and utterly horrible coding.
What am I doing wrong to produce a parse error? I know to call a method I have to do this:
Accepter::isElement($section, $kounter);
If someone knows, please let me know, my entire app right now is dead in the water and I have to have it up by tomorrow AM for a whole-team demo!
Thanx
Phil