Let's say I have a script that uses ignore_user_abort and set_time_limit with the value of 0, is it possible to check using php to see when that process/task has finished other than writing the result to a file or a database?
ATM I just write to a file and use a script to see if it has ended, which works, but let's say something goes wrong.. in that case the script may have ended already but in the file it may seem as if it is still running.
I use this format:
script|timestamp_start|timestamp_end\n
eg
script|10000000|0 - script runs
script|10000000|1000000001 - script ended
Thanks in advance
getmypid()in a file and doing asystem('ps 12345');but this would be platform dependent :( – Salman A Nov 30 '12 at 16:40