php class Student { protected $name = 'Jadon'; public function __toString() { return $this->name; } } $st = new Student; echo $st; ?> 輸出:.
確定! 回上一頁