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 worksthis too works
this works
error
this works this too works

ANSWER DOWNLOAD EXAMIANS APP