Variable
Table of Contents
Reserved variables.
These PHP variables are reserved. You shouldn’t redefine these PHP variables where possible. Consider to name a variable with custom prefix for private use. Global variables are stored in the $GLOBALS
variable. Add your own public variables there to be used in the layout files.
Pattern
^\$[a-z][a-z0-9]*(?:_[a-z0-9]+)*$
0 Comments
No comments yet.