Heim  >  Fragen und Antworten  >  Hauptteil

php中 $符号是什么意思?

素颜素颜2883 Tage vor1430

Antworte allen(3)Ich werde antworten

  • 数据分析师

    数据分析师2017-09-30 22:39:43

    php中 $符号是什么意思?-PHP中文网问答-php中 $符号是什么意思?-PHP中文网问答

    围观一下哦,学习一下。

    Antwort
    0
  • PHP中文网

    PHP中文网2016-12-17 13:14:30

    其实PHP采用的是C语言的语法,但是也有一些区别,$符号加上字符串,这就是一个变量名或对象名,例如下面的代码:
    class MyClass{
     private $_val;

     public function foo(){
       return $this->_val;
     }

     public function foo1(){
       return $this->_val;
     }
     ......
    }
    $my = new MyClass;
    echo $my->foo();

    MyClass是个类名,不用加$符号,$_val是个私有变量,一般是以$加下划线加字符串组成的,foo和foo1是两个成员函数,不用加$符号,$my是一个对象,必须加$符号

    Antwort
    0
  • 迷茫

    迷茫2016-12-17 11:33:37

    php中$符号是变量符号;

    把$符号加上字符串,这个字符串就是一个变量名或对象名。


    Antwort
    0
  • StornierenAntwort