Mantis - Quercus
Viewing Issue Advanced Details
6005 minor always 05-15-16 09:04 07-03-16 16:51
ebo  
nam  
normal  
closed  
fixed  
none    
none  
0006005: exec($command, $output) doesn't return return output in variable
Running:

exec($command, $output);

always results in $output NULL.

A workaround is to initialise $output first as in:

$output=array();
exec($command, $output);

Notes
(0006711)
nam   
07-03-16 16:51   
php/1d1a