vote up 4 vote down star
2

Hi,

I have this process intensive task that i would like to run in the background.

The user clicks on a page the PHP script runs and finally based on some conditions if required then it has to run a shell script EG: shell_exec('php measurePerformance.php 47 844 email@yahoo.com');

Currently I use shell_exec BUT this requires the script to wait for an output. Is there anyway to execute the command I want and DO NOT wait for it to complete??

Thanks

flag

NOTE: The process has to start immediately so a cron is not an option. – ToughPal Jun 19 at 20:27
1  
Just a quick note: Make sure the page will not be accessible by everyone (search engines/ fraudulent users) and if you are on a shared environment, the execution time of all your scripts (in particular php!) probably is limited. In any case you may want to take a look at set_time_limit/php.ini. – merkuro Jun 19 at 20:35

6 Answers

vote up 7 vote down check

How about adding.

"> /dev/null 2>/dev/null &"

shell_exec('php measurePerformance.php 47 844 email@yahoo.com > /dev/null 2>/dev/null &');

Note this also gets rid of the stdio and stderr.

link|flag
It works perfectly. Are there any problems / side effects of using this?? – ToughPal Jun 19 at 20:39
No. No side effects. If you sometime decide you want the stdio or stderr output of your process consider stackoverflow.com/questions/45953/… – jitter Jun 19 at 21:00
Question: That's just discarding the output, right? Does PHP still wait for the process to finish before continuing execution, or does it fire and forget? – Alan Storm Jun 19 at 21:06
2  
Yes discards out. Yes fire and forget – jitter Jun 19 at 21:17
vote up 0 vote down

Use php's POPEN command eg. pclose(popen("start c:\wamp\bin\php.exe c:\wamp\www\script.php","r")) .. this will create a child process and script will excute in background with out waiting for output ... enjoy !!!

link|flag
vote up 1 vote down

Hi ToughPal,

That will work but you will have to be careful not to overload your server because it will create a new process every time you call this function which will run in background. If only one concurrent call at the same time then this workaround will do the job.

If not then I would advice to run a message queue like for instance beanstalkd/gearman/amazon sqs.

link|flag
vote up 0 vote down

You could always post over some AJAX to a page that calls the shell_exec().

link|flag
vote up 1 vote down

This will execute a command and disconnect from the running process. Of course, it can be any command you want. But for a test, you can create a php file with a sleep(20) command it.

exec("nohup /usr/bin/php -f sleep.php > /dev/null 2>&1 &");
link|flag
vote up 1 vote down

If it's off of a web page, I recommend generating a signal of some kind (dropping a file in a directory, perhaps) and having a cron job pick up the work that needs to be done. Otherwise, we're likely to get into the territory of using pcntl_fork() and exec() from inside an Apache process, and that's just bad mojo.

link|flag

Your Answer

Get an OpenID
or

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