Perl 反引号调用求助
3 回答
aluckdog
TA贡献1847条经验 获得超7个赞
my $cur_dir = `pwd`;
chomp($cur_dir);
my $file = "$cur_dir/bin/ProcessDir.exe";
if(-e $file){
my $str = `$file`; #see below comments:
print "str is $str \n";
}
#直接在windows cygwin下面调用返回正常,但通过CGI调用后$str返回为空string.
解决
把 $cur_dir 输出到网页上查看是什么内容。
用 print "$@ $! $^E $?\n" 看看这些变量都什么内容
- 3 回答
- 0 关注
- 679 浏览
添加回答
举报
0/150
提交
取消