Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
define("__LINE__", "PHP is a scripting language");
echo __LINE__;
?>
Answer : Option C
Explanation :
__LINE__ is a magical constant that gives the current line number and cannot be used a variable/constant name.
Be The First To Comment