Q. What will be the output of the following PHP code ?
Code:
<?php
define("__LINE__", "PHP is a scripting language");
echo __LINE__;
?>
β
Correct Answer: (C)
2
<?php
define("__LINE__", "PHP is a scripting language");
echo __LINE__;
?>
You must be Logged in to update hint/solution