getName(); " class="related-a">
768. What will be the output? class Person { protected $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } } $person = new Person("Foo"); echo $person->getName();