Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a PHP script that runs from bash/command line. It's passed variables that I pickup with $argv[x] - question is, if I haven't got some data yet, I want the script to sleep and try again in 10 seconds.

If I do

if(!empty($filePlease)) { sleep(10); }

Once it wakes up and tries again, does it maintain the argv's passed?

share|improve this question
How are you re-running your script? – Blender Nov 14 '11 at 17:36
1  
sleep() just relinquishes the cpu and schedules a wakeup call for 10 seconds from now. Nothing will be forgotten and execution will continue as before, just 10 seconds later. – Marc B Nov 14 '11 at 17:52

2 Answers

up vote 4 down vote accepted

As long as the execution of the script is not terminated, the state (including variables) is maintained.

share|improve this answer

Yes, as long as your PHP script doesn't exit, you will maintain the arguments passed in.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.