Hi!
How is it possible to use this function on Windows with IIS. I tried but it didn't work.
When my script is finished it start running this shutdown scrpt but i have to wait to finished before i get done.
This is a script
function test() {
for ($n=0;$n<1000000;$n++) {
}
}
register_shutdown_function ("test");
echo "test";
"It write test after for is finished".
I tried this code on Linux with Apache and it works fine.