A
Q. What will be the output of the following PHP code?
Code:
<?php
$x = 5;
function myFunction(){
echo "Result $x";
}
myFunction();
?>
$x = 5;
function myFunction(){
echo "Result $x";
}
myFunction();
?>
- Correct Answer - Option(C)
- Views: 25
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.