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!”
const
I am awesome!!

ANSWER DOWNLOAD EXAMIANS APP