| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2001-01-15 08:45 UTC] cynic@php.net
  [2001-05-11 21:11 UTC] sniper@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 05:00:01 2025 UTC | 
<? function run_command($command, $errmsg) { $lastline = exec("$command 2>&1", &$lines, $rc); if ($rc) { print("<pre>\n"); print("$errmsg\n\n"); print("Command : $command\nReturned : $rc\nOutput\n------\n"); print(join("\n", $lines)."\n\n"); } return($rc); } $rc = run_command("/bin/uname -a", "Uname Failed!"); print("rc now = $rc"); ?> All the commands that I have tested (uname is just an example) have returned -1 as the return code, even though the command has executed perfectly well. I get the same error if I use system instead of exec. I cannot see how else to run a command and check to see whether it failed or not. I am using PHP RPMS downloaded from http://rpms.arvin.dk/php/ but this does not seem like a packaging error, so I am reporting it here.