PHP Functions
What will be the output of the following PHP code?
function onespan>() {
define("const","I am awesome!");
echo constant("const");
}
one();

I am awesome!!
const
const, I am awesome!!
“const”,”I am awesome!”

ANSWER DOWNLOAD EXAMIANS APP