Multiple choice php

The three possible connection states in PHP are ________.

  1. normal

  2. aborted

  3. timeout

  4. All of the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

PHP connection states track the status of a client connection to the server. Normal means the connection is active, aborted means the client disconnected, and timeout means the connection exceeded the time limit. All three states are valid connection states in PHP, making option D correct.