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();
2022-12-29 12:37:26
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();
下一篇:php7安装sphinx遇到的坑