Hello,
Let us suppose that PHP file contains cycle which will never stop. For
example:
while ( 2==2 )
{
some usage of database;
}
User which opens this PHP page runs time consuming execution of the
cycle. My question is whether this execution will be automatically
stopped after user closes the PHP file (or closes his browser). I
suppose that answer is "No", since PHP is server-side application.
How than I can find such processes and kill them by hands?
Let us suppose that PHP file contains cycle which will never stop. For
example:
while ( 2==2 )
{
some usage of database;
}
User which opens this PHP page runs time consuming execution of the
cycle. My question is whether this execution will be automatically
stopped after user closes the PHP file (or closes his browser). I
suppose that answer is "No", since PHP is server-side application.
How than I can find such processes and kill them by hands?
Comment