php-playground
php-playground copied to clipboard
Infinite loop countermeasures
It hangs in an infinite loop code as follows.
<?php
while(true) {
echo(1);
}
#17
As a provisional response, add a wait animation.
As an essential response, have Wasm run in a Web Worker and run in a separate thread.
It would be nice to be able to change max-execution-time and apply it on the fly.
@glassmonkey Sorry just curious but how will Web workers solve the infinite loop problem