MCQOPTIONS
Saved Bookmarks
| 1. |
<?php class letsfindcourse { public function __construct(){ echo 'The class "' . __CLASS__ . '" was initiated!<br>'; } } $lfc = new letsfindcourse; ?>6.Which of the following is the output of the below code? |
| A. | The class letsfindcourse was destroyed! |
| B. | The class lfc was initiated! |
| C. | Error |
| D. | No Output |
| Answer» B. The class lfc was initiated! | |