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);"但是到了linux下,始終為正數,剛開始懷疑是權限問題,用了chmod +x後,排除了權限問題。
代碼如下 復制代碼 exec("/home/wwwroot/test/rtest.out 2>&1",$out,$a);看起來成了256+return val,可以看到實際上返回了負數,只不過被轉換成正數了。
接著看了下standard/exec.c裡的源代碼,沒發現啥端倪,干到很奇怪,突然想到自己忘了一步。忘了看程序返回給OS的值了.
可以使用echo $? 顯示最後命令的推出狀況。
這樣就可以看看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
}