Hi!
I have a question: I got a class with a constructor including infinite loop. it means then such class instance created, it should run until connection is lost and script is down by the server. I also have in-class destructor to do something then server stops script. As I supposed, PHP should call destructor for any instance and in this should execute destructors code and then let it stop. In real I have no destructor code executed, that means no destructor called on script shutdown. PHP manual says it should destruct all created instances and call their destructors on server external stop signal. Anyone knows what can i do?