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

ANSWER DOWNLOAD EXAMIANS APP