Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
function onespan>()
{
define("const","I am awesome!");
echo constant("const");
}
one();
?>
Answer : Option A
Explanation :
Using the define function to define the constant “const”.
Be The First To Comment