InterviewSolution
Saved Bookmarks
| 1. |
Which statement will output $x on the screen?(a) echo “\$x”;(b) echo “$$x”;(c) echo “/$x”;(d) echo “$x;”;The question was asked in an online interview.This intriguing question comes from Basics in division Basics of PHP of PHP |
|
Answer» Correct answer is (a) echo “\$x”; |
|