标签:方法 UNC 介绍 function xxx public 赋值 对象 new
php7实例化类有对象有两种方法,下面给介绍具体两种方法class Person{
public $a="96net.com.cn";
public function eat(){
echo ‘xxxx‘;
}
}
1,NEW 关键词实例化对象
$xm= new Person();
或者
$xm= new Person;
2, 类名字符串,把类名赋值给变量
$strs=‘Person‘;
$xm= new $strs();
标签:方法 UNC 介绍 function xxx public 赋值 对象 new
原文地址:https://blog.51cto.com/13959155/2458699