Home>Article>Backend Development> What does dollar sign mean in php
The $ symbol in php is a variable symbol;
Add the $ symbol to a string, and this string is A variable name or object name.
In fact, PHP uses the syntax of C language, but there are some differences. The $ sign plus a string is a variable name or object name.
For example, the following code: (Recommended learning:PHP programming from entry to proficiency)
class MyClass{ private $_val; public function foo(){ return $this->_val; } public function foo1(){ return $this->_val; } ...... } $my = new MyClass; echo $my->foo();
MyClass is a class name, no $ sign is needed; $_val is a private variable , usually composed of $ followed by an underscore and a string; foo and foo1 are two member functions, so there is no need to add the $ sign; $my is an object and must be added with the $ sign.
The above is the detailed content of What does dollar sign mean in php. For more information, please follow other related articles on the PHP Chinese website!