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

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

ANSWER DOWNLOAD EXAMIANS APP