PHP Functions
What will be the output of the following PHP code?
function one() {
echo " this works";
function two() {
echo "this too works";
}
}
one();
two();

this works this too works
this worksthis too works
this works
error

ANSWER DOWNLOAD EXAMIANS APP