$p1 = new Person('michael');//向Person類別的建構子__construct傳名字
echo($p1->name);//取得物件p1的public實例屬性name(注意沒有$)
$p1->speak();//呼叫物件p1的實例方法speak
echo(Person::$sex);//取得類別變數(static $sex)
echo(Person::sex);//取得類別中的常數(不是static const,沒有static const。只有類別變數沒有類別常數。)
Person::run();//呼叫類別方法(或稱為靜態方法 static function)
總結:
物件實例操作用 ->
類操作用 ::