php7實例化類有對象有兩種方法,下面給介紹具體兩種方法php
class Person{public $a="96net.com.cn";public function eat(){echo 'xxxx';}php7
}ide
1,NEW 關鍵詞實例化對象對象
$xm= new Person();或者$xm= new Person;字符串
2, 類名字符串,把類名賦值給變量it
$strs='Person';io
$xm= new $strs();function