我在论坛中看到了一些相同问题的答案..但答案仍然没有提供一个清晰的想法..
在 C# 等其他语言中执行良好。但为什么不是 PHP?
检查示例:
class Student
{
public $name;
public $age;
private $number;
}
class ss
{
public $obj;
public $objs=new Student(); //generating error
public function act()
{
$obj = new Student();
$obj->study();
$obj->studentinfo();
}
}
$ob = new ss();
$ob->act();