Q. What will be the output of the following PHP code?
Code:
<?php
define("__LINE__", "She is beautiful");
echo "\n";
echo __LINE__;
?>
β
Correct Answer: (D)
4
<?php
define("__LINE__", "She is beautiful");
echo "\n";
echo __LINE__;
?>
You must be Logged in to update hint/solution