如果您看不到 system()、shell_exec() 等的任何输出或错误,您可以尝试以下方法
<?php
function my_exec($cmd, $input='')
{$proc=proc_open($cmd, array(0=>array('pipe', 'r'), 1=>array('pipe', 'w'), 2=>array('pipe', 'w')), $pipes);
fwrite($pipes[0], $input);fclose($pipes[0]);
$stdout=stream_get_contents($pipes[1]);fclose($pipes[1]);
$stderr=stream_get_contents($pipes[2]);fclose($pipes[2]);
$rtn=proc_close($proc);
return array('stdout'=>$stdout,
'stderr'=>$stderr,
'return'=>$rtn
);
}
var_export(my_exec('echo -e $(</dev/stdin) | wc -l', 'h\\nel\\nlo'));
?>
例如,“echo shell_exec('ls');”将没有任何输出,
“my_exec('ls');”将得到“sh: ls: command not found”,
“my_exec('/bin/ls');”可能会得到“sh: /bin/ls: Permission denied”,
权限问题可能是由selinux引起的。