程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php的exec在linux中返回值不能為負數的問題

php的exec在linux中返回值不能為負數的問題

編輯:關於PHP編程

exec函數在windows環境下是沒有任何問題的,但在linux中返回值不能為負數。

string exec ( string $command [, array &$output [, int &$return_var ]] )

第三個參數, 怎麼不能接收負數??
這裡的&$return_var就是程序返回值,起初我的回答是可以為負數。
一般在C語言裡我們會這樣寫

 代碼如下 復制代碼

#include <stdio.h>
#include <stdlib.h>
int main()
{
    printf("^_^n");
    return -5;
}

這個-5就是返回值,但習慣上是寫成0或者1的。
注意:很多人的C代碼裡把main函數寫成 void main() 這樣實際上是不對的,詳細的就不說了。
把上面的代碼編譯後,到CMD下運行,然後就能看到輸出結果了。接著,輸入“echo %ERRORLEVEL%”,回車,就可以看到程序的返回值了。這個%ERRORLEVEL%就代表了程序的返回狀態。在WIN下確實是可以為負數的。如圖所示:

,php調用也是正常的。

 代碼如下 復制代碼 E:devphp535>php -r "exec('return.exe',$out,$a);var_dump($a);"
int(-2)

但是到了linux下,始終為正數,剛開始懷疑是權限問題,用了chmod +x後,排除了權限問題。

 代碼如下 復制代碼 exec("/home/wwwroot/test/rtest.out 2>&1",$out,$a);
var_dump($out,$a);
array(1) { [0]=> string(3) "^_^" } int(251)

看起來成了256+return val,可以看到實際上返回了負數,只不過被轉換成正數了。
接著看了下standard/exec.c裡的源代碼,沒發現啥端倪,干到很奇怪,突然想到自己忘了一步。忘了看程序返回給OS的值了.
可以使用echo $? 顯示最後命令的推出狀況。

 代碼如下 復制代碼 -bash-3.00$ vi main.c
-bash-3.00$ gcc -o ./mm main.c
-bash-3.00$ ll
total 48
drwxr-xr-x  3 www www 4096 May  4  2011 2011
drwxr-xr-x  6 www www 4096 Jun 23  2011 eoc
-rwxr-xr-x  1 www www 7131 Feb  1 12:47 hello
-rw-r--r--  1 www www    3 Feb  1 12:51 hello.c
-rw-r--r--  1 www www   99 Feb  1 12:50 main.c
-rwxr-xr-x  1 www www 4714 Feb  1 12:51 mm
drwxr-xr-x  3 www www 4096 Jun 24  2011 test
-bash-3.00$ ./mm
^_^
-bash-3.00$ echo $?
251
-bash-3.00$

這樣就可以看看exec返換給OS的值是多少。
在linux下,這個返回值就是無符號類型,返回的是一個正數,所以傳給php也是正數了,php實際上也是調用的exec所返回的值。

exec目錄操作

 
2down vote  For greater control over how the child process will be executed, you can use the proc_open() function:

2 down vote

For greater control over how the child process will be executed, you can use the proc_open() function:

 代碼如下 復制代碼

$cmd  = 'Scripts/script.sh'; 
$cwd  = 'Scripts'; 
 
$spec = array( 
    // can something more portable be passed here instead of /dev/null? 
    0 => array('file', '/dev/null', 'r'), 
    1 => array('file', '/dev/null', 'w'), 
    2 => array('file', '/dev/null', 'w'), 
); 
 
$ph = proc_open($cmd, $spec, $pipes, $cwd); 
if ($ph === FALSE) { 
    // open error 

 
// If we are not passing /dev/null like above, we should close 
// our ends of any pipes to signal that we're done. Otherwise 
// the call to proc_close below may block indefinitely. 
foreach ($pipes as $pipe) { 
    @fclose($pipe); 

 
// will wait for the process to terminate 
$exit_code = proc_close($ph); 
if ($exit_code !== 0) { 
    // child error 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved