What Will Be The Output Of The Following Php Codep Pre Langphp #357
What will be the output of the following PHP code?</p> <pre><code class="language-php" line="1"> class Person { function getName() { return "Bob"; } function getAge() { return 44; } function __toString() { $desc = $this->getName(); $desc .= " (age ".$this->getAge().")"; return $desc; } } $person = new Person(); print $person; </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs107 PHP: Hypertext Preprocessor. It can also be found in gs gs107 Objects and Databases - PHP Object Advanced Features - Quiz No.3.
What will be the output of the following PHP code?
class Person { function getName() { return "Bob"; } function getAge() { return 44; } function __toString() { $desc = $this->getName(); $desc .= " (age ".$this->getAge().")"; return $desc; } } $person = new Person(); print $person;
Object Not Found
PHP Catchable fatal error
BOB (age 44)
BOB