我有一支 CGI 如下:
#!C:\Perl\bin\perl -w
use Win32::Process;
###########################
# http html response header
print "Content-type: text/html\r\n\r\n";
$cmd = 'c:/Perl/bin/perl.exe';
###################################
# test.pl 里面只有一行: print "hi";
$arg = 'perl test.pl';
###################
# 红色 1: 是 iflags
# 青色 0: 是 cflags
if(!Win32::Process::Create($process,$cmd,$arg,1,0 ,'.')){
$err = "Create process fail";
print $err;
exit;
}
$process->Wait(2000);
$process->GetExitCode($exitCode);
=================================
我如果在 cmd 下直接执行这支 script
在 console 视窗可以看到 hi 这个字串有出来
不过如果透过 browser 呼叫这支 CGI
前端页面就什么都没有(不知道 hi 这个字串跑哪去了??)
注: 我参考 http://search.cpan.org/~jdb/Win32-Process-0.16/Process.pm
尝试改变过 Win32::Process::Create 有关 iflags 和 cflags 参数的任何值
前端页面还是一样没东西
谢谢大家唷