Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
How do you run this script? – Salman A Nov 30 '12 at 16:28
I have a form that sends data to the script. – JustaN00b Nov 30 '12 at 16:30
What platform is it? *nix or windows? – Salman A Nov 30 '12 at 16:32
*nix, however the script is part of a cms that will also have to work on windows. Would getmyinode() be an option btw? – JustaN00b Nov 30 '12 at 16:36
1  
I was thinking about saving getmypid() in a file and doing a system('ps 12345'); but this would be platform dependent :( – Salman A Nov 30 '12 at 16:40
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.