0
What is the meaning of $
..
3 Answers
+ 4
it's used in declaration of variable, all php variables start with the dollar sign.
+ 3
in php $ is a variable
+ 3
As others have said, $ is used to state a variable in PHP. Just like in JavaScript you would use the var keyword, and many other languages use their own keywords.