Q. What is the result of the following PHP code?
Code:
<?php
class Person
{
public function __construct(){
echo 'The class "' . __CLASS__ . '" was initiated!';
}
}
$p = new Person;
?>
β
Correct Answer: (B)
The class “Person” was initiated!