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

I'm struggling to understand the difference between shell_exec() and exec()...

I've always used exec() to execute server side commands, when would I use shell_exec()?

Is shell_exec() just a shorthand for exec()? It seems to be the same thing with fewer parameters.

share|improve this question
Might want to accept an answer now as it appears to be answered. – psynnott Mar 6 '12 at 10:18

5 Answers

up vote 43 down vote accepted

shell_exec returns all of the output stream as a string. exec returns the last line of the output.

See

share|improve this answer
1  
I thought exec() returned the last line of the command's result. Am I confused? – Mark Biek Aug 17 '11 at 13:46
misread the docs. – Daniel A. White Aug 17 '11 at 13:47
If you need the exit-value AND all of the output you're probably still better of using "exec" rather than "shell_exec". As soon as you pass the output parameter to "exec", it will be filled with every line of the output, it seems to me "exec" can everything of "shell_exec" and more :) – Preexo yesterday

shell_exec - Execute command via shell and return the complete output as a string

exec - Execute an external program.

The difference is that with shell_exec you get output as a return value.

share|improve this answer

good example to see the differences is to try these commands: date, whoami, ifconfig, netstat.

share|improve this answer
1  
would be nice if you pasted the results here. – Mark Mar 6 at 22:17

Here are the differences. Note the newlines at the end.

> shell_exec('date')
string(29) "Wed Mar  6 14:18:08 PST 2013\n"
> exec('date')
string(28) "Wed Mar  6 14:18:12 PST 2013"
> shell_exec('whoami')
string(9) "mark\n"
> exec('whoami')
string(8) "mark"
> shell_exec('ifconfig')
string(1244) "eth0      Link encap:Ethernet  HWaddr 10:bf:44:44:22:33  \n          inet addr:192.168.0.90  Bcast:192.168.0.255  Mask:255.255.255.0\n          inet6 addr: fe80::12bf:ffff:eeee:2222/64 Scope:Link\n          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1\n          RX packets:16264200 errors:0 dropped:1 overruns:0 frame:0\n          TX packets:7205647 errors:0 dropped:0 overruns:0 carrier:0\n          collisions:0 txqueuelen:1000 \n          RX bytes:13151177627 (13.1 GB)  TX bytes:2779457335 (2.7 GB)\n"...
> exec('ifconfig')
string(0) ""
share|improve this answer
what happens if there is one error occurs with command..? I am getting the error /No such file or directory but how can I capture it to a variable ???? – Alwin Augustin Mar 11 at 19:43
@AlwinAugustin: Huh? Might be being written to STDERR. Try adding 2>&1 to the end of your command to redirect STDERR to STDOUT if you're on a linux machine. – Mark Mar 11 at 21:06
I have addedd it also . But still I am getting 0 as the value. I have used one wc -l command and if the file is not there, I need to get the error message saying No such file or directory. – Alwin Augustin Mar 12 at 4:02

A couple of distinctions that weren't touched on here:

  • With exec(), you can pass an optional param variable which will receive an array of output lines. In some cases this might save time, especially if the output of the commands is already tabular.

Compare:

exec('ls', $out);
var_dump($out);
// Look an array

$out = shell_exec('ls');
var_dump($out);
// Look -- a string with newlines in it

Conversely, if the output of the command is xml or json, then having each line as part of an array is not what you want, as you'll need to post-process the input into some other form, so in that case use shell_exec.

It's also worth pointing out that shell_exec is an alias for the backtic operator, for those used to *nix.

$out = `ls`;
var_dump($out);
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.