InterviewSolution
Saved Bookmarks
| 1. |
What will the file_get_contents() return?(a) Server’s response(b) Errors(c) Exception(d) Client’s response |
|
Answer» The correct option is (a) Server’s response The best explanation: The file_get_contents() is a PHP’s native function used to hit the URL and read the server’s response into a variable $wpt_response: |
|