<?php
echo '<pre>';// Outputs all the result of shellcommand "ls", and returns
// the last output line into $last_line. Stores the return value
// of the shell command in $retval.
$last_line = system('ls', $retval);// Printing additional info
echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;
?>

解决方案 »

  1.   

    --------------------------------------------------------------------------------
    Last line of the output: 
    --------------------------------------------------------------------------------
    Return value: 127只显示了$retval变量
    没有显示$last_line 
    还是不行呀~
      

  2.   

    我想我知道是咋回事了~
    我放在另外一台LINUX服务器上,可以用了
      

  3.   

    为什么同样的代码,两台机器会有区别呢?
    是因为httpd.conf的原因还是因为php.ini的原因?