I'm working on an web app which can go in offline mode. An ajax request checks every 5 seconds if a connection is available triggering the php fopen function as this :
if (fopen("http://google.com/", "r")) {
return true;
}
return false;
This is my main question : Is it technically possible that the Apache/PHP get saturated and bring the server down ?
I've read all that is about on http://php.net/manual/fr/function.fopen.php but still can't get a clue about it ?