PHP In-depth : Variables
In PHP, variables start with a $
then a name following a specific pattern similar to all other PHP labels :
- first character : a letter, from
a
toz
in lower case or upper case, plus all ASCII characters from codes 127 (0x7f
) to 255 (0xff
), or an underscore (_
). - then : a group of letters (defined as above), underscores, or numbers.
We can use the following regular expression to represent them :
[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*
Source : http://php.net/manual/en/language.variables.basics.php
Written by Nicolas KEMPF
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Related Tags
#php
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#